2 <head><title>Jstemplates: Quick example
</title>
3 <script src=
"../util.js" type=
"text/javascript"></script>
4 <script src=
"../jsevalcontext.js" type=
"text/javascript"></script>
5 <script src=
"../jstemplate.js" type=
"text/javascript"></script>
6 <script type=
"text/javascript">
7 var tplData
= {username
:"Joe User",
9 {location
:"111 8th Av.", label
:"NYC front door"},
10 {location
:"76 9th Av.", label
:"NYC back door"},
11 {location
:"Mountain View", label
:"Mothership"}
15 // This is the javascript code that processes the template:
16 var input
= new JsEvalContext(tplData
);
17 var output
= document
.getElementById('tpl');
18 jstProcess(input
, output
);
22 <body onload=
"showData()">
29 <span jsselect=
"username" jscontent=
"$this">User de Fault
</span>'s
32 <span jsdisplay=
"addresses.length==0">Address book is empty.
</span>
33 <table cellpadding=
"5" jsdisplay=
"addresses.length">
34 <tr><td><h2>Location:
</h2></td><td><h2>Label:
</h2></td></tr>
35 <tr jsselect=
"addresses"><td jscontent=
"location"></td><td jscontent=
"label"></td></tr>