Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript magic line doesn’t stop when click on the link , coz the page refresh after clicking Re: magic line doesn’t stop when click on the link , coz the page refresh after clicking

#112380
neerukool
Participant

All you need to do is this:
$(selector).click(function(event){
// your code
event.preventDefault();
});

This will prevent anchor tag from performing it’s default task.