Bei mir funktioniert es aber :) Auch mit ext. css
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="test.css" rel="stylesheet" type="text/css" media="screen" />
[code lang=javascript]
<script>
function suche_stylesheet_anweisung(gesuchter_selectorText)
{
for (i=0; i<document.styleSheets.length; i++)
{
for (j=0; j<document.styleSheets[i].cssRules.length; j++)
{
var current_selectorText = document.styleSheets[i].cssRules[j].selectorText;
var Ausgabetext = "i=" + i + "; j=" + j + "; Seletorname=" + current_selectorText;
if ( current_selectorText== gesuchter_selectorText )
{
Ausgabetext += "; Hurra - gefunden";
}
alert(Ausgabetext)
}
}
}
</script>
</head>
<body onload='suche_stylesheet_anweisung(".finde_mich_1")'>
</body>
</html>
[/code]