in JQuery I am not able to set the Property value with !important
this is code .css({height: "300px !important"})
in JQuery I am not able to set the Property value with !important
this is code .css({height: "300px !important"})
Hello I found the Solution :
.css({height: "300px !important"})
to
.css("cssText", "height: 300px !important;");