vote up 3 vote down star

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

flag

4 Answers

vote up 9 vote down check

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|flag
This could be replaced by a one-liner. See below: stackoverflow.com/questions/462537/… – Premasagar Oct 23 at 11:20
vote up 0 vote down

There's a simple, cross-browser way to do this. You have to explicitly create a "style" attribute on the element. This is not the same as modifying element.style:

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

Done.

link|flag
vote up 3 vote down

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

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

It might well be something specific to Firefox but it should be fine for your greasemonkey script.

link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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