Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery .animate() forces style "overflow:hidden"

Tags:

jquery

css

jQuery's .animate() forces the style overflow: hidden when triggered, messing with my animated element because I have another element that's hanging, with negative position, outside of it. is there anyway to avoid that?

like image 531
PulledBull Avatar asked Jul 29 '10 13:07

PulledBull


1 Answers

Another way is to declare the element as !important in css.

For example.

.somediv {   overflow: visible !important; } 
like image 101
Andrew Rosolino Avatar answered Sep 29 '22 20:09

Andrew Rosolino