Add Dynamic DOM Manipulation

You can add Dynamic DOM manipulation to render.js after Mustache.render() is called and the template is appended to the parent object.

For example, you could attach a listener, dynamically changing the style:

// Dynamic DOM Manipulation can be done here
$('h1').click(function (event) {
    alert('Title is : ' + $(this).text());
});