Three methods for JQuery to cancel event bubbling
$(element).click(function(){ return false; });
$(element).click(function(e){ e.preventDefault(); });
$(element).click(function(e){ e.stopPropagation(); });
Related articles
Jquery gets the browser height, width, and scroll bar height What is CSS hack? Solution to not displaying zblog keywords PHP realizes obtaining the cover map through the public account link Five Methods of Adding Links to FLASH Files Three methods for jQuery to determine whether the checkbox is selected