How to stop event actions from firing on an element with jQuery
Today, I want to talk about stopping the browser default events from firing whenever an element is clicked or caused to fire by the browser. With just a couple easy lines of code to add to your jQuery/javascript function.
This is also how you can get rid of the hash tag showing up in the url whenever you click on an <a>
link with a href hash tag #
.
jQuery Example to Prevent Default
And of course Internet Explorer (IE) does not like this way, so for people who want it to work on IE (I am sadly one of those people), we need to add just a few more lines. Check if event.preventDefault is set, and if not (it’s IE), so let’s use something it likes…
Make sure your function has the event function var in it’s params, such as function(e){, so if it is e instead of event, then it would be e.preventDefault(). It can be named whatever, just make sure you take a look at it.