Sunday, June 2, 2024
 Popular · Latest · Hot · Upcoming
68
rated 0 times [  74] [ 6]  / answers: 1 / hits: 20122  / 9 Years ago, thu, october 29, 2015, 12:00:00

I am using raphael.js library and this file contains a mouseover event which I want to stop working. Can anyone help me?


More From » jquery

 Answers
7

You could use CSS:



.element {
pointer-events: none;
}


Or something like:



$('.element').on('mouseover mouseenter mouseleave mouseup mousedown', function() {
return false
});


I don't know from what you want to prevent that event from triggering something, please be more specific on your questions and provide more relevant information.


[#64569] Monday, October 26, 2015, 9 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cierra

Total Points: 504
Total Questions: 108
Total Answers: 109

Location: Northern Mariana Islands
Member since Fri, Jan 15, 2021
3 Years ago
;