Removing css property using jquery | XM Community
Solved

Removing css property using jquery

  • 15 December 2018
  • 2 replies
  • 144 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!
icon

Best answer by Anonymous 15 December 2018, 23:43

View original

2 replies

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!

Leave a Reply