Mozilla.com

  1. MDC
  2. Main Page
  3. DOM
  4. stylesheet.href

« Gecko DOM Reference

Summary

Returns the location of the stylesheet.

Syntax

uri = stylesheet.href 

Parameters

  • uri is a string containing the stylesheet's URI.

Example

 // on a local machine: 
 <html> 
  <head> 
   <link rel="StyleSheet" href="example.css" type="text/css" /> 
   <script> 
    function sref() { 
     alert(document.styleSheets[0].href); 
    }
   </script> 
  </head> 
  <body> 
   <div class="thunder">Thunder</div>
   <button onclick="sref()">ss</button>
  </body> 
 </html>
// returns "file:////C:/Windows/Desktop/example.css

Notes

If the style sheet is a linked style sheet, the value of its attribute is its location. For inline style sheets, the value of this attribute is NULL.

Specification

href

Page last modified 12:34, 17 Mar 2006 by Nickolay

Files (0)