-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinline.html
45 lines (37 loc) · 1.41 KB
/
inline.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
<!DOCTYPE html>
<html>
<head>
<style>
table { border-collapse:collapse; margin:8px; background-color:#f8f8f8; }
table td { height:30px; width:100px; border:1px solid blue; padding:3px; }
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script>
var movies = [
{ Name: "The Red Violin", ReleaseYear: "1998", Director: "Françs Girard" },
{ Name: "Eyes Wide Shut", ReleaseYear: "1999", Director: "Stanley Kubrick" },
{ Name: "The Inheritance", ReleaseYear: "1976", Director: "Mauro Bolognini" }
];
</script>
<script id="summaryTemplate" type="text/x-jquery-tmpl">
<tr> <td>${Name}</td> <td>${ReleaseYear}</td> <td>${Director}</td> </tr>
</script>
<script>
function renderList() {
$( "#summaryTemplate" ).tmpl( movies ).appendTo( "#moviesList" );
}
</script>
<script>
$(function(){
$('#showBtn').click(function(data){
renderList();
});
});
</script>
</head>
<body>
<button id="showBtn">Show movies</button><br/>
<table><tbody id="moviesList"></tbody></table>
</body>
</html>