Jquery Click Function Not Working On Firefox
I wrote this animate out script and it works fine on chrome, but does not work on Firefox and I cant figure out why? Any ideas? Basically, it checks if a particular link is clicke
Solution 1:
You should put an event as a parameter of function like this:
$(triggers).on('click', function (event, e) { //up & out
e.preventDefault();
}
Post a Comment for "Jquery Click Function Not Working On Firefox"