Lets say I have
You can't remove pseudo-class rules, but you can override them with event bindings:
$("#container").on('mouseover', function () { $(this).css('background', 'blue'); }).on('mouseout', function () { $(this).css('background', whateverItIsNormally); });