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
Try This :
$( '.myclass' ).each(function () { this.style.setProperty( 'height', '0px', 'important' ); });
.setProperty () enables you to pass a third argument which represents the priority.