I'm trying to disable this css rule on a single page:
[id^="ITEMROW_"]:hover
{
background-color: #F6F6F6 !important;
}
Using the following jQuery:
$("id^=ITEMROW_").css("hover", "");
However, it is not working. The css code is still being applied.
Can someone help with this?