forked from Jchillemi87/craigslist-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
34 lines (31 loc) · 788 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Craiglist Ext
</title>
</head>
<body style="text-align: center;">
<script type="text/javascript" src="jquery-2.2.3.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
HIDING:
<br>
<select id="hiding" name="hiding" multiple>
<option value="intern">intern</option>
<option value="sales">sales</option>
</select>
<button id="btnDel">Delete</button>
</form>
<br>
<br>
<label>
Enter Words To Hide
</label>
<input type="text" id="newHide" required="required">
<button id="btnAdd">Add</button>
<br>
<br>
<div style="background-color: indigo;">
<button id="btn" style="margin: 5px;">Update</button>
</div>
</body>
</html>