'parentStyleSheet' Example : parentStyleSheet « Javascript Properties « JavaScript Reference

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

    
      
      








Related examples in the same category

1.'parentStyleSheet' Syntax and Note
2.'parentStyleSheet' is applied to