Dynamickú manipuláciu DOM môžete pridať do súboru render.js po volaní funkcie Mustache.render() a pripojení šablóny k nadradenému objektu.
Môžete napríklad pripojiť prijímač a dynamicky tak zmeniť štýl:
// Dynamic DOM Manipulation can be done here
$('h1').click(function (event) {
alert('Title is : ' + $(this).text());
});