hi, as a question title i can use one of two techniques : 1- event.preventDefault() [code] $('a').click(function (e) { // custom handling here e.preventDefault(); }); [/code] 2- return false [code] $('a').click(function () { // custom handling here return false; }); [/code] what i need to know is is there any major difference between those two methods of stopping event ...
Question