Title pretty much sums it up.

The external style sheet has the following code:

td.EvenRow a{
  display: none !important;
}

I have tried using:

element.style.display = "inline";

and

element.style.display = "inline !important";

but neither works. Is it possible to override an !important style using javascript.

This is for a greasemonkey extension, if that makes a difference.

Much appreciated, Enrico

link|improve this question

feedback

6 Answers

up vote 12 down vote accepted

I believe the only way to do this it to add the style as a new CSS declaration with the '!important' suffix. The easiest way to do this is to append a new <style> element to the head of document:

function addNewStyle(newStyle) {
    var styleElement = document.getElementById('styles_js');
    if (!styleElement) {
        styleElement = document.createElement('style');
        styleElement.type = 'text/css';
        styleElement.id = 'styles_js';
        document.getElementsByTagName('head')[0].appendChild(styleElement);
    }
    styleElement.appendChild(document.createTextNode(newStyle));
}

addNewStyle('td.EvenRow a {display:inline !important;}')

The rules added with the above method will (if you use the !important suffix) override other previously set styling. If you're not using the suffix then make sure to take concepts like 'specificity' into account.

link|improve this answer
   
This could be replaced by a one-liner. See below: stackoverflow.com/questions/462537/… – Premasagar Oct 23 '09 at 11:20
How are you gonna find the selector that actually triggers the style? I think this requires parsing all stylesheets, which is a pretty tough job. – Pumbaa80 Feb 2 '11 at 12:03
feedback

There are a couple of simple one-liners you can use to do this.

1) Set a a "style" attribute on the element:

element.setAttribute('style', 'display:inline !important');

or...

2) Modify the cssText property of the style object:

element.style.cssText = 'display:inline !important';

Either will do the job.

===

BTW - if you want a useful tool to manipulate !important rules in elements, I've written a jQuery plugin called "important": http://github.com/premasagar/important

link|improve this answer
I think that using cssText is simpler then adding a style tag. – Guss Dec 14 '10 at 14:29
@Guss - The first example I gave is for a style attribute, not a tag/element. – Premasagar Dec 17 '10 at 23:56
Yes, I know- I compared your answer to @J-P's selected one, and I tried to say that I think your's is better. – Guss Dec 19 '10 at 15:16
@Guss - ah, oh, I see. I got confused. Thx. – Premasagar Dec 20 '10 at 4:27
1  
To prevent overriding other properties, you man want to use element.style.cssText += ';display:inline !important;'; – Pumbaa80 Feb 2 '11 at 12:03
show 1 more comment
feedback

element.style has a setProperty method that can take the priority as a third parameter:

element.style.setProperty("display", "inline", "important")

It doesn't work in IE but it should be fine for your greasemonkey script.

link|improve this answer
feedback

You can nuke the class, but this might have other side effects you don't want.

element.className = null; // or your favorite replacement class
link|improve this answer
feedback

If all you are doing is adding css to the page, then I would suggest you use the Stylish addon, and write a user style instead of a user script, because a user style is more efficient and appropriate.

See this page with information on how to create a user style

link|improve this answer
Modifying the css is only a part of what my gm extension does – Enrico Apr 1 '10 at 0:47
feedback

Better method I just discovered: try to be more specific than the page CSS with your selectors. I just had to do this today, and it works like a charm! More info on the W3C site: http://www.w3.org/TR/CSS2/cascade.html#specificity

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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