I have a jquery calendar wich it takes events from a php file wich is feeding json data. I want to bind a function on every event added to calendar. And I did this:
$(this).bind("mouseenter", function(){
alert("a");
});
It works, but only on second rollover on each event. First time I roll over nothing happens.