Hi I have a jquery function that goes like this
$(".btn").click(function(e){
alert("hello");
});
For some reason it gives two alerts. This stems from another script in a plugin I am using (found out as I turned the plugin off). In my script, I tried to unbind it, which gives me no fix. I have also used e.stopPropogation() which works, but then kills the plugin function. Is there a way to allow the plugin function to run its course, then for my function to perform once only.
Thanks in advance.