I have a huge jQuery application, and I\'m using the below two methods for click events.
First method
Go for this as it will give you both standard and performance.
$('#myDiv').click(function(){ //Some code });
As the second method is simple JavaScript code and is faster than jQuery. But here performance will be approximately the same.