-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtask2.html
More file actions
72 lines (71 loc) · 1.04 KB
/
task2.html
File metadata and controls
72 lines (71 loc) · 1.04 KB
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
<!DOCTYPE html>
<html>
<head>
<title>
</title>
<style>
table,th, td {
border:1px solid black;
width:50px;
}
</style>
<script src="jquery-3.1.1.min.js"></script>
<script>
$(document).ready(function(){
var toAa = $('input[name=product]').val();
var pq=$('.rt');
var pri=toA*pq;
$('.ne').text('pri');
})
</script>
</head>
<body>
<table>
<tr>
<th>Product_id</th>
<th>Product_cost</th>
<th>Product_name</th>
<th>Product_available</th>
<th>Product_quantity</th>
<th>Total cost</th></tr>
<tr>
<td>1</td>
<td class="rt">50</td>
<td>a</td>
<td>10</td>
<td><input type="text" name="product"></td>
<td class="ne"></td>
</tr>
<tr>
<td>2</td>
<td>100</td>
<td>b</td>
<td>15</td>
<td><input type="text"></td>
<td></td></tr>
<tr>
<td>3</td>
<td>150</td>
<td>c</td>
<td>8</td>
<td><input type="text"></td>
<td></td></tr>
<tr>
<td>4</td>
<td>80</td>
<td>d</td>
<td>5</td>
<td><input type="text"></td>
<td></td></tr>
<tr>
<td>5</td>
<td>70</td>
<td>e</td>
<td>6</td>
<td><input type="text"></td>
<td></td></tr>
</table>
<button>Final Total cost</button>
<br>
<body>
</html>