jQuery Template Engine
jQuery Template Engine
Hi All,
As you see we've been busy developing couple of plugins for our new projects. One is jQuery Template Engine. To merge loaded data at ajax call with templates in project.
Its easy to use and free for everyone. see more samples here jTemplate Samples
<select id='countries'>
<option loop='true'>%#field%</option>
</select>
var loadedData = ['Australia', 'Brazil', 'Canada', 'China', 'England', 'France', 'Italy', 'United State'];
$('#countries').template(loadedData);
<select id="countries">
<option>Australia</option>
<option>Brazil</option>
<option>Canada</option>
...
..
.
</select>
See jQuery Repository http://archive.plugins.jquery.com/project/jTemplate or read Full jTemplate Document
This new jquery template is completely different from our old jBind template system. Much more flexible and a bit faster.
Cheers,
Arash