Hi all,
I tried being specific in the title, I hope it explained what I meant. I've got several control in my web page. Some of them are quite complex, built by other people, and some of them I cannot change.
Now, I wanted to add my own functionality to certain controls, say... User hovers over a button and show him an image. Problem is, that when I start writing my own jquery event handlers for example:
$('div#special_div').click(function() {
alert('clicked');
})
the original event handlers won't work.
Any ideas why this happens?