I have css on my page’s body and I would like to overwrite overflow: visible !important;. I have tried the jQuery script below, but that doesn’t do it”
jQuery("body, #s4-workspace").css("overflow", "hidden !important");
CSS:
body, #s4-workspace {
overflow: visible !important;
}
body {
height: 100%;
overflow: hidden; //overriden
width: 100%;
}
I know there are two overflow already, but sadly I don’t have the hand on that, otherwise it would be too easy, wouldn’t it?
As mentioned,
! importantis not handled well by jQuery’scss().Here is a hack that will work if you don’t mind overwriting the inline
styleattribute value (if it exists):Like I said, it’s a hack – but give it a try.
Demo: http://jsfiddle.net/dGbaD/