This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloggedout_compare.html
82 lines (80 loc) · 3.36 KB
/
loggedout_compare.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>home.hunt / home</title>
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/flat-ui.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<div id="wrapper">
<div id="actionbar">
<!-- TODO: make this logo white, or reverse bar colors -->
<div id="back-button" class="logo"></div>
<!-- TODO: make this logo white, or reverse bar colors -->
<h1>Carnegie Mellon</h1>
<div id="account-button" class="button">
<a href="login.html">
<img src="img/account-button.png" alt="login" />
</a>
</div>
</div>
<div id="content">
<form>
<input type="checkbox" id="pricecheckbox" checked>Price
<input type="checkbox" id="loccheckbox" checked>Location
<input type="checkbox" id="brbacheckbox" checked>BR/BA
<input type="checkbox" id="amenitiescheckbox" checked>Amenities
</form>
<ul id="resultlist">
<li class="result">
<div class="removebutton"><span class="fui-cross-24"></div>
<h3 class="location"><span class="fui-location-24"></span> A. 1231 Morewood Ave</h3>
<h4 class="price">Price: $2000/month</h4>
<h4 class="brba">Bed/Bath: 4BR 2BA</h4>
</li>
<li class="result">
<div class="removebutton"><span class="fui-cross-24"></div>
<h3 class="location"><span class="fui-location-24"></span> B. 314 Beeler St</h3>
<h4 class="price">Price: $900/month</h4>
<h4 class="brba">Bed/Bath: 2BR 1.5BA</h4>
<h4 class="amenities">Amenities: AC, laundry</h4>
</li>
<li class="result">
<div class="removebutton"><span class="fui-cross-24"></div>
<h3 class="location"><span class="fui-location-24"></span> C. 135 Beeler St</h3>
<h4 class="price">Price: $1023/month</h4>
<h4 class="brba">Bed/Bath: 2BR 2BA</h4>
</li>
</ul>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.2/jquery.ui.touch-punch.min.js"></script>
<script src="js/custom_checkbox_and_radio.js"></script>
<script src="js/custom_radio.js"></script>
<script src="js/bootstrap-tooltip.js"></script>
<script src="js/homehunt.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#pricecheckbox").click(function() {
$(".price").toggle("showOrHide");
});
$("#loccheckbox").click(function() {
$(".location").toggle("showOrHide");
});
$("#brbacheckbox").click(function() {
$(".brba").toggle("showOrHide");
});
$("#amenitiescheckbox").click(function() {
$(".amenities").toggle("showOrHide");
});
$(".removebutton").click(function(event){
$(this).parent().remove();
});
});
</script>
</body>
</html>