-1

How can I unbind this mousemove event specifically? I know how to unbind event handlers that are given to specific elements, but how do i unbbind a single event handler function when using $(this)?

$(this).on("mousemove", function() {

});
UserDy
  • 327
  • 5
  • 22

1 Answers1

0

try

$(this).unbind('mousemove');

Works?

Jayant Varshney
  • 1,765
  • 1
  • 25
  • 42