I want to apply height for specific div using jquery but not able to override the \'!important\' keyword using jquery.
height
\'!important\'
jquery
Here is
You can do this:
$(".myclass").css("cssText", "height: 0 !important;");
Using "cssText" as the property name and whatever you want added to the css as it's value.