You cannot do this, but try it!
Depending on whether it is a DIV, IMG, ... you will need to do something like this. This example applies to the image:
$j('img#lveis-wrapper_3').animate({ opacity: 0.0, height : 200 }, 1200);
Priorities are defined in CSS with selector specificity. The selector specificity for #id was 1.0.0 , but the addition of img # id is now 1.0.1 , so the priority is higher.
source share