i'm looking for an jquery alternative to Ext.Template.
for example.:
var template = new Ext.Template(
'<div',
'<span>{text}</span>'
'</div>'
);
template.append('body', {text: 'my awesome template'});
Is there any native in jQuery, or do I have to use a plugin?
h
thanks in advance