Question

I'm considering using Mustache.js for a small project I'm working on.... The one thing that I haven't seen an answer for is - Which is the best way to go about hooking up events?

I was thing of creating a tree menu with mustache but I can't think which would be the best or cleanest way to hook up events to each node?

Was it helpful?

Solution

Mustache is a template engine; it's concerned only with markup, not behavior. To wire in events you should use the same best practices with HTML generated by hand or with any other templating engine--that is, by attaching events to nodes using addEventListener or with your library of choice's (jQuery/Prototype/Dojo/YUI) preferred methods. Just give your nodes appropriate ids and classnames in your templates and do the rest as usual.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top