-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjhtml14.html
29 lines (24 loc) · 1.05 KB
/
jhtml14.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
<!DOCTYPE html>
<html>
<head>
<script src = "http://dl.dropbox.com/u/88337953/jjs14.js"></script>
<link rel = "stylesheet" type = "text/css" href = "http://dl.dropbox.com/u/88337953/jcss14.css" />
</head>
<body onload="createProductCart()">
<ul>
<li><a href = "#products" id="product-tab" onclick="appear('product','cart')">Products</a></li>
<li><a href = "#mycarts" id="cart-tab" onclick="appear('cart','product')">My Carts(0)</a></li>
</ul>
<table id="mytable">
<tr><td>Search:<input type="text" /></td><td><input type="button" value="Search"/></td><td><input type="button" value="Clear"/></td><td>Category:<select><option value="all">All</option></select></td></tr>
</table>
<table id="product_table">
</table>
<table id="cart_table">
<tr><th>Products</th><th>Price</th><th>Quantity</th><th>Subtotal</th><th></th></tr>
</table>
<div id ="footer">
Total:<input type="text" id="total" disabled="true" value="0.00"/><input type="button" value="Checkout" />
</div>
</body>
</html>