Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having trouble applying a style that is !important. I've tried:

$("#elem").css("width", "100px !important");

This does nothing, no width style whatsoever is applied. Is there a jquery-ish way of applying such a style without having to overwrite cssText (which would mean I'd need to parse it first, etc.)?

Edit: I should add that I have a stylesheet with an !important style that I am trying to override with an !important style inline, so using .width() and the like does not work since it gets overrridden by my external !important style.

Also, the value that will override the previous thing is computed, so I cannot simply create another external style.

share|improve this question
Worth noting is that this actually works in Chrome (for me at least), but not in Firefox. – Peter Jaric Oct 18 '11 at 8:39
This also works for me in Chrome 17.x and Safari 5.1.1, but not in FF 8.0. – DavidJ Nov 13 '11 at 21:12
Doesn't work for me on Chromium 20.0.x using JQuery 1.8.2. – jmendeth Oct 27 '12 at 13:24

9 Answers

up vote 35 down vote accepted

I think I've found a real solution. I've made it into a new function:

jQuery.style(name, value, priority);

You can use it to get values with .style('name') just like .css('name'), get the CSSStyleDeclaration with .style(), and also set values - with the ability to specify the priority as 'important'. See https://developer.mozilla.org/en/DOM/CSSStyleDeclaration.

Demo

var div = $('someDiv');
console.log(div.style('color'));
div.style('color', 'red');
console.log(div.style('color'));
div.style('color', 'blue', 'important');
console.log(div.style('color'));
console.log(div.style().getPropertyPriority('color'));

Here's the output:

null
red
blue
important

The Function

// For those who need them (< IE 9), add support for CSS functions
var isStyleFuncSupported = CSSStyleDeclaration.prototype.getPropertyValue != null;
if (!isStyleFuncSupported) {
    CSSStyleDeclaration.prototype.getPropertyValue = function(a) {
        return this.getAttribute(a);
    };
    CSSStyleDeclaration.prototype.setProperty = function(styleName, value, priority) {
        this.setAttribute(styleName,value);
        var priority = typeof priority != 'undefined' ? priority : '';
        if (priority != '') {
            // Add priority manually
            var rule = new RegExp(RegExp.escape(styleName) + '\\s*:\\s*' + RegExp.escape(value) + '(\\s*;)?', 'gmi');
            this.cssText = this.cssText.replace(rule, styleName + ': ' + value + ' !' + priority + ';');
        } 
    }
    CSSStyleDeclaration.prototype.removeProperty = function(a) {
        return this.removeAttribute(a);
    }
    CSSStyleDeclaration.prototype.getPropertyPriority = function(styleName) {
        var rule = new RegExp(RegExp.escape(styleName) + '\\s*:\\s*[^\\s]*\\s*!important(\\s*;)?', 'gmi');
        return rule.test(this.cssText) ? 'important' : '';
    }
}

// Escape regex chars with \
RegExp.escape = function(text) {
    return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
}

// The style function
jQuery.fn.style = function(styleName, value, priority) {
    // DOM node
    var node = this.get(0);
    // Ensure we have a DOM node 
    if (typeof node == 'undefined') {
        return;
    }
    // CSSStyleDeclaration
    var style = this.get(0).style;
    // Getter/Setter
    if (typeof styleName != 'undefined') {
        if (typeof value != 'undefined') {
            // Set style property
            var priority = typeof priority != 'undefined' ? priority : '';
            style.setProperty(styleName, value, priority);
        } else {
            // Get style property
            return style.getPropertyValue(styleName);
        }
    } else {
        // Get CSSStyleDeclaration
        return style;
    }
}

See https://developer.mozilla.org/en/DOM/CSSStyleDeclaration for examples of how to read and set the CSS values. My issue was that I had already set !important for the width in my CSS to avoid conflicts with other theme CSS, but any changes I made to the width in jQuery would be unaffected since they would be added to the style attribute.

Compatibility

For setting with the priority using the setProperty function, http://help.dottoro.com/ljdpsdnb.php says there is support for IE 9+ and all other browsers. I have tried with IE 8 and it has failed, which is why I built support for it in my functions (see above). It will work on all other browsers using setProperty, but it will need my custom code to work in < IE 9.

share|improve this answer
have you tested this on other browsers? – mkoryak Jan 17 '12 at 19:41
See my updates, I've built support for IE8 and lower, and it works fine in IE9 (as stated in the links) and of course all other browsers. – Aram Kocharyan Jan 18 '12 at 7:55
This is great, but doesnt work in IE6 – Kirk Strobeck Jan 24 '12 at 17:54
Ah, I didn't test it in IE6, but surely IE7 has superseded it there :) – Aram Kocharyan Jan 25 '12 at 0:56
show 2 more comments

The problem is caused by jQuery not understanding the !important attribute, and as such fails to apply the rule.

You might be able to work around that problem, and apply the rule by referring to it, via addClass():

.importantRule { width: 100px !important; }

$('#elem').addClass('importantRule');

Or by using attr():

$('#elem').attr('style', 'width: 100px !important');

The latter approach would unset any previously set in-line style rules, though. So use with care.

Of course, there's a good argument that @Nick Craver's method is easier/wiser.

The above, attr() approach modified slightly to preserve the original style string/properties:

$('#elem').attr('style', function(i,s) { return s + 'width: 100px !important;' });
share|improve this answer
i am leaning toward your latter approach, but what is sad about it is that ill probably end up having to parse the previous cssText because i cant just discard it – mkoryak Apr 16 '10 at 21:13
FYI, In your first snippet you should change .rule to .importantRule or the other way around. – Sinan Yasar Apr 16 '10 at 21:28
@Sinan Y. you're absolutely right...grr, typos edited and changed. Thanks! =) – David Thomas Apr 16 '10 at 21:30
1  
ah, sorry couldn't get it, sometimes English humour goes beyond my understanding...:) – Sinan Yasar Apr 17 '10 at 11:57
1  
What's with the nested quotes ('"width: 100px !important"')? That didn't work for me, but when I removed the inner quotes it worked. Thanks! – Peter Jaric Oct 18 '11 at 8:36
show 6 more comments

You can set the width directly using .width() like this:

$("#elem").width(100);

Updated for comments: You have this option as well, but it'll replace all css on the element, so not sure it's any more viable:

$('#elem').css('cssText', 'width: 100px !important');
share|improve this answer
ok, i used with as an example, what i care about is setting !important. – mkoryak Apr 16 '10 at 21:02
also i edited the question to reflect my situation better.. basically i have an external !important width that is set to something bad that i must override inline. width() does not work for this reason – mkoryak Apr 16 '10 at 21:10
@mkoryak - Updated with the only other non-class option, not sure if it'll fit your situation or not. – Nick Craver Apr 16 '10 at 21:23
6  
+1 for csstext – Jason May 21 '12 at 22:07
2  
this seems to be the simplest way to get this to work. – j03 Jan 15 at 19:32

David Thomas’s answer describes a way to use $('#elem').attr('style', …), but warns that using it will delete previously-set styles in the style attribute. Here is a way of using attr() without that problem:

var $elem = $('#elem');
$elem.attr('style', $elem.attr('style') + '; ' + 'width: 100px !important');

As a function:

function addStyleAttribute($element, styleAttribute) {
    $element.attr('style', $element.attr('style') + '; ' + styleAttribute);
}
addStyleAttribute($('#elem'), 'width: 100px !important');

Here is a JS Bin demo.

share|improve this answer
addStyleAttribute() could also be modified to take the same parameters as jQuery’s .css(). For instance, it could support taking a map of CSS properties to their values. If you did that, you would basically be re-implementing .css() with the !important bug fixed but without any optimizations. – Rory O'Kane Nov 21 '12 at 5:56

If it is not so relevant and since you're dealing with one element which is #elem, you can change its id to something else and style it as you wish...

$('#elem').attr('id','cheaterId');

and in your css:

#cheaterId { width: 100px;}

hope this helps, Sinan.

share|improve this answer
+1 for the absolute simplicity. – David Thomas Apr 16 '10 at 22:07
2  
why do you change the id to apply a css instead of just add a css class? – TeKapa Apr 12 '12 at 13:54

I would assume you tried it without adding important?
inline css (which is how js adds styling) overrides stylesheet css. I'm pretty sure that's the case even when the stylesheet css rule has !important.

Another question (maybe a stupid question but must be asked.): is the element you are trying to work on, is it display:block; or display:inline-block; ?

not knowing your expertise in CSS.. inline elements don't always behave as you would expect.

share|improve this answer
1  
css rules that have !important override everything, no matter where they are located, only exception being that inline styles with !important will override stylesheet styles with !important. This is the problem i am having. there is a stylesheet rule with !important that i would like to override. whats more, the value i need to supply must be computed through JS, so i cant simply change the stylesheet itself. – mkoryak Apr 16 '10 at 21:05

This solution doesn't override any previous style, it just apply the one you need:

var heightStyle = "height: 500px !important";
if ($j("foo").attr('style')) {
  $j("foo").attr('style', heightStyle + $j("foo").attr('style').replace(/^height: [-,!,0-9,a-z, A-Z, ]*;/,''));
else {
  $j("foo").attr('style', heightStyle);
}
share|improve this answer

We need first remove previous style. I remove using a regular. I send you a example for change color,...

var SetCssColorImportant = function (jDom, color) {
       var style = jDom.attr('style');
       style = style.replace(/color: .* !important;/g, '');
       jDom.css('cssText', 'color: ' + color + ' !important;' + style); }
share|improve this answer

Kinda late but here is what I did after encountering this problem...

jQuery('#logo-example').attr('style','width:150px !important');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.