Removing css property using jquery | XM Community
Skip to main content
Hello, I am trying to remove css property using jquery but I can't make it work. Please take a look at the below code: ! The default css property value is ```css .Skin #Questions{ overflow:auto } ``` I want to remove the overflow property. Can anyone tell me why the jquery isn't working? Thank you!
Hello @casualuser , Please use the below code: `jQuery(".Skin #Questions").css("overflow","initial");`
> @Shashi said: > Hello @casualuser , > > Please use the below code: > `jQuery(".Skin #Questions").css("overflow","initial");` > Thank you buddy!