I am trying to add !important in the css attribute using jQuery like
$("tabs").css('height','650px;!important');
but !important has no effect. How to include !important in jquery?
|
I am trying to add !important in the css attribute using jQuery like
but !important has no effect. How to include !important in jquery? |
|||||||||||
|
|
Apparently it's possible to do this in jQuery:
|
|||||||||||
|
|
While i think you don't need !important in your code "at least in normal cases" because using your code that means that jquery will add inline css style which is more power than any other class and no need for !important in this case. But i think to make it work as you want, just put !important then the semicolon.
Also note something in your code, what "tabs" is? is it a tag? "don't think so" if its a class you need to write it like this:
and if its an id you need to write it like this:
|
|||
|
|
|
You don't need |
|||||||
|