Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Workaround for Opera 7 and document.styleSheets[...?

Status
Not open for further replies.

jcphua

Programmer
Feb 26, 2001
5
AU
Wondering whether anybody knows a workaround for Opera 7 to be able to reference CSS files via JavaScript.

eg.

IE5+:
[COLOR=009900]
Code:
alert(document.styleSheets);
[/color]
[COLOR=009900]
Code:
alert(document.styleSheets[0]);
[/color]
[COLOR=009900]
Code:
alert(document.styleSheets[0].rules);
[/color]
[COLOR=009900]
Code:
alert(document.styleSheets[0].rules[0]);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0].cssRules);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0].cssRules[0]);
[/color]

NS6+:
[COLOR=009900]
Code:
alert(document.styleSheets);
[/color]
[COLOR=009900]
Code:
alert(document.styleSheets[0]);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0].rules);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0].rules[0]);
[/color]
[COLOR=009900]
Code:
alert(document.styleSheets[0].cssRules);
[/color]
[COLOR=009900]
Code:
alert(document.styleSheets[0].cssRules[0]);
[/color]

Opera:
[COLOR=009900]
Code:
alert(document.styleSheets);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0]);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0].rules);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0].rules[0]);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0].cssRules);
[/color]
[COLOR=990000]
Code:
alert(document.styleSheets[0].cssRules[0]);
[/color]

is the only resource I could find that also states Opera 7 doesn't support this method.

There's gotta be a way!?! Or is Opera that useless?

btw, if it makes any difference, I am using Opera 7.11 Windows.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top