0

in JQuery I am not able to set the Property value with !important

this is code .css({height: "300px !important"})

1 Answers1

2

Hello I found the Solution :

.css({height: "300px !important"})

to

.css("cssText", "height: 300px !important;");