0
Concept of unbind in js
I am using some library . it has some pre define click events. I want to off them so I used unbind method. luckily, it worked . I need my own click event on some of that elements but when I write my click event function , library click event also get activated. I can't go through library events list , its complicated
2 Answers
+ 2
You can look for the event.preventDefault() method if that helps
0
Abhay , did you mean event.stopPropagation()? Well, I use elem.off('click').on('click', function(){}) as I am using jquery . but what's the use of unbind property