Given a simple node, I'd like to handle click event on a node.
For example when you click on "cherry" on the page http://www.graphdracula.net/, an alert should popup.
ps: need new tag "dracula" but I don't have enough reputation to create it...
Given a simple node, I'd like to handle click event on a node.
For example when you click on "cherry" on the page http://www.graphdracula.net/, an alert should popup.
ps: need new tag "dracula" but I don't have enough reputation to create it...
cant you simply do
$("#cherryID").live('click',function(){
//code here
});