I have come across several methods for handling click events in jquery:
bind:
$(\'#mydiv\').bind(\'click\', function() { ... });
I think that you should have searched the jquery docs before posting this question :
As of jQuery 1.7, the .on() method is the preferred method for attaching event handlers to a document.