Stop style HOVER behaviour with jQuery?

Bcmenjfmtkfyy

New Member
I have a div with style.This style\[code\] body .d:hover { background-color:red; }\[/code\]But I want (if possible) that Jquery will stop this hover behaviour.I tried with \[code\] $(".d").hover(function () { return false;}); $(".d").mouseenter(function () { return false;});\[/code\]nothing helped.any help ? here is the JSBIN ( I want that after pressing the button - nothing will happen when hovering.)
 
Back
Top