Mega Code Archive

 
Categories / JavaScript Reference / Javascript Properties
 

ParentStyleSheet Example

<html> <body> <style id="myStyle" type="text/css">@import url("external.css");</style>  <p id="myP1">sample text.</p> <p id="myP2">sample text.</p> <input type="button" value="The parent style sheet" onclick="function1();"> <script language="JavaScript">     function function1() {         alert(document.styleSheets[0].imports[0].href);     } </script> </body> </html>