vote up 3 vote down star
1

I am trying to read a custom (non-standard) CSS property, set in a stylesheet (not the inline style attribute) and get its value. Take this CSS for example:

#someElement {
  foo: 'bar';
}

I have managed to get its value with the currentStyle property in IE7:

var element = document.getElementById('someElement');
var val = element.currentStyle.foo;

But currentStyle is MS-specific. So I tried getComputedStyle() in Firefox 3 and Safari 3:

var val = getComputedStyle(element,null).foo;

...and it returns undefined. Does anyone know a cross-browser way of retreiving a custom CSS property value?

(As you might have noticed, this isn't valid CSS. But it should work as long as the value follows the correct syntax. A better property name would be "-myNameSpace-foo" or something.)

flag

I'm interested; what problem are you trying to solve? :) – roosteronacid Oct 30 '08 at 12:27
Ditto! Seems like a very strange request... – Rob Stevenson-Leggett Oct 30 '08 at 12:42
I thought it would be neat to carry style-related settings for non-HTML stuff (like Flash, Silverlight or JS-stuff) in normal stylesheets, and then pass them to e.g. Flash via JS. In a big environment where complex content is to be style-controlled only with stylesheets, this could be valuable. – joolss Oct 30 '08 at 12:51

5 Answers

vote up 3 vote down check

Firefox does not carry over tags, attributes or CSS styles it does not understand from the code to the DOM. That is by design. Javascript only has access to the DOM, not the code. So no, there is no way to access a property from javascript that the browser itself does not support.

link|flag
vote up 2 vote down

I'm not sure if this is possible. I have noticed that firebug will completely ignore styles that it doesn't recognize. This may imply that firefox itself will ignore them when parsing the stylesheet.

Of course, I could be wrong.

link|flag
vote up 1 vote down

One way would of course be to write your own CSS-parser in Javascript. But I believe that is really over the top.

link|flag
Definitely over the top, but this is a helpful suggestion in desperate situations :). – Daniel Cassidy Jan 20 '09 at 17:58
vote up 0 vote down

By reading in the Stylesheet info in IE, you CAN get these "bogus" properties, but only in IE that I'm aware of.

var firstSS = document.styleSheets[0];
var firstSSRule = firstSS.rules[0];
if(typeof(firstSSRule.style.bar) != 'undefined'){
  alert('value of [foo] is: ' + firstSSRule.style.bar);
} else {
  alert('does not have [foo] property');
}

Its ugly code, but you get the picture.

link|flag
Nice trick! My example above also works fine in IE but nowhere else (see currentStyle in quirksmode.org/dom/w3c_css.html ) although it needs an element that matches the selector (the CSS way) One way would be to parse the stylesheet through Javascript. Doesn't feel practical though. – joolss Nov 8 '08 at 16:36
vote up 0 vote down

I too have some pages that work wonderfully in MSIE, but have lots of info in styles and style sheets. So I'm thinking about workarounds. One thing Firefox does allow, mercifully, is putting inline attributes into the DOM. So here's a partial strategy:

  1. Replace each inline style in the html document with a corresponding "nStyle", e.g., <span class="cls1" nStyle="color:red; nref:#myid; foo:bar"> ... </span>

  2. When the page is loaded, do the following with each element node: (a) copy the value of the nStyle attribute into the tag's cssText, and at the same time (b) convert the nonstandard attributes into an easier format, so that, e.g., node.getAttribute('nStyle') becomes the object {"nref":"#myid", "foo":"bar"}.

  3. Write a "calculatedStyle" function that gets either the style or the nStyle, depending on what's available.

Writing a rough parser for style sheets might enable a similar strategy for them, but I have a question: How do I get over the hurdle of reading the style sheet without censorship from Firefox?

link|flag

Your Answer

Get an OpenID
or
never shown

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