I know that CSS3 animation
property is removed by setting to none !important
, and so I tried (and did, within CSS code). But, by using jQuery.css()
method to change animation property to mentioned, it doesn't work.
I have tried
$('#site-title, #site-description').css(
{
'animation':'none !important',
'-webkit-animation':'none !important',
'-moz-animation':'none !important',
'-o-animation':'none !important'
}
);
and also tried (knowing that jQuery in many cases handles prefixes automatically )
$('#site-title, #site-description').css(
{
'animation':'none !important'
}
);
...no good. Just to note, I haven't mess node selection, when I for test purposes inser display:none
they're gone.
How to resolve this?