He buscado un poco sobre un ejemplo básico sobre el uso del motor John Resig JavaScript Micro-Templating en Google pero salió seco.¿Cómo usar el motor de plantillas micro JavaScript John Resig?
Decidí llevarlo a la base chicos. ¿Alguien puede ayudar con un simple ejemplo sobre el uso de este motor? Nunca antes había usado un motor de plantilla del lado del cliente.
Actualización: este es el documento HTML completo. Gracias a Will.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>John Resig JavaScript Micro-Templating engine</title>
<script src="jquery-1.3.2.js" type="text/javascript"></script>
<script src="MicroTemplates.js" type="text/javascript"></script>
<script type="text/javascript">
//Data
var data = { fname: "fred" };
function onloadFunction() {
var s = $("#biodata").html();
var s1 = tmpl(s, data);
$("#target").html(s1);
}
</script>
<script id="biodata" type="text/html">
<div><%= fname %></div>
</script>
</head>
<body onload="onloadFunction();">
<div id="target">
</div>
</body>
</html>
Gracias por el cambio. Greg. – Tebo
Sería bueno si pudieras proporcionar un enlace a un Fiddle. – ayjay