TOC PREV NEXT INDEX

Put your logo here!


href


Returns the location of the stylesheet.

Syntax

href = stylesheet.href 

Parameters

href is a string containing the URI of the stylesheet.

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

stylesheets


mozilla.org | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX