css
#nextCh:hover{
margin-right:6px;
}
Under some conditions I want to remove this :hover event
Something like this:
if (indexL == countL) {
$("#nextCh").css(":hover", "remove");
}
css
#nextCh:hover{
margin-right:6px;
}
Under some conditions I want to remove this :hover event
Something like this:
if (indexL == countL) {
$("#nextCh").css(":hover", "remove");
}