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
inline style fails to override the !important given in stylesheets.
Therefore !important can be overridden only by using !important along jQuery
!important
jQuery
Try like
$('#divL3.myclass').attr('style', 'height: 0px !important');