In my css I have this:
#panel li:hover {
background-color: #ffa;
}
under some condition I'd like to disable to hover style from the li items, something like:
function start() {
$('#panel li').ignoreHoverRules();
}
and re-enable it later:
function end() {
$('#panel li').reenableHoverRules();
}
is something like that possible? Not sure how to 'enable' or 'disable' the hover style rules at runtime,
Thanks