-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal_basket.html
62 lines (52 loc) · 1.94 KB
/
final_basket.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<title>My Little Coding Shop</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Custom styles for this template -->
<link href="jumbotron.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="final.html">My Little Coding Shop</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="final_shop.html">Shop</a></li>
<li><a href="final_basket.html">Basket £<span id="total"></span></a></li>
</ul>
</div>
</div>
<h1>Total: £<span id="basket_total">0.00</span></h1>
<div class="container text-center">
<!-- Example row of columns -->
<ul id="items">
</ul>
<hr>
<footer>
<p>© Coding Shop 2014</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<script>
var total = localStorage.getItem("total");
$('#total').text(total);
$('#basket_total').text(total);
var items = JSON.parse(localStorage.getItem('items')) || [];
items.forEach(function(item) {
$('#items').append('<li>' + item.title + '</li>')
})
</script>
<!-- Placed at the end of the document so the pages load faster -->
</body>
</html>