Hi Guys,
I am trying to use jQuery to establish whether a CSS property has changed inside a class. I dont want to use .HasClass() - I want to find a property within the CSS - namely
display:block;
I thought maybe this might work ?
if (jQuery('css-class').css('display') == 'block')
But not sure if it does. Does anyone have any suggestions ?
Thx