-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs.html
88 lines (85 loc) · 3.51 KB
/
js.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
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>Sal's Pizza</title>
<link href="css/estilo.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="js/js.js"></script>
</head>
<body>
<div class="container">
<div class="titulo">
<h1>Sal's Pizza - V1</h1>
</div>
<div class="menu">
<table id="tabla">
<thead>
<tr>
<th>Comprar</th>
<th>Pizzas</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr>
<th colspan="3">Clásicas</th>
</tr>
<tr id="test" onclick="actualizarPedido(event)"><td><input type="checkbox"/></td><td>Fugazzeta</td><td>200</td></tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Jamón y Queso</td>
<td>190</td>
</tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Especial</td>
<td>198</td>
</tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Mozzarella</td>
<td>210</td>
</tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Napolitana</td>
<td>240</td>
</tr>
<tr>
<th colspan="3">Especiales</th>
</tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Queso Azul y Peras Caramelizadas</td>
<td>254</td>
</tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Mariscos</td>
<td>264</td>
</tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Pollo</td>
<td>234</td>
</tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Hongos</td>
<td>253</td>
</tr>
<tr onclick="actualizarPedido(event)">
<td><input type="checkbox"/></td>
<td>Ciervo Ahumado</td>
<td>250</td>
</tr>
</tbody>
</table>
</div>
<div class="calculo">
<span class="total">
Total: $ <span id="total">0.00</span>
</span>
</div>
</div>
</body>
</html>