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
Another Easy method to solve this issue adding style attribute.
$('.selector').attr('style','width:500px !important');
This will solve your problem easily... :)