Removing css property using jquery | XM Community
Skip to main content
Solved

Removing css property using jquery

  • December 15, 2018
  • 2 replies
  • 931 views

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!

Best answer by Anonymous

Hello @casualuser , Please use the below code: `jQuery(".Skin #Questions").css("overflow","initial");`

2 replies

  • 0 replies
  • Answer
  • December 15, 2018
Hello @casualuser , Please use the below code: `jQuery(".Skin #Questions").css("overflow","initial");`

  • Author
  • 2 replies
  • December 16, 2018
> @Shashi said: > Hello @casualuser , > > Please use the below code: > `jQuery(".Skin #Questions").css("overflow","initial");` > Thank you buddy!