I am attempting to modify a CSS attribute using jQuery. I have used the following code:
wrapperInner.css('overflow', 'visible');
However, the value remains unchanged. When I use an alert
alert(wrapperInner.css('overflow'))
, it displays as hidden
.
Below is the CSS related to this issue:
.tribe-events-calendar td div.wrapper div.wrapper_inner {
position:relative;
overflow:hidden!important;
}