The href property of the StyleSheet interface returns the location of the style sheet.
Syntax
uri = stylesheet.href
Parameters
uriis 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.
This property is read-only in Firefox, Opera, Google Chrome, and Safari, and it is read/write in Internet Explorer.
Specifications
| Specification | Status | Comment |
|---|---|---|
| CSS Object Model (CSSOM)The definition of 'StyleSheet: href' in that specification. | Working Draft |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
href
|
Chrome
Full support 1 |
Edge
Full support 12 |
Firefox
Full support Yes |
IE
? |
Opera
Full support Yes |
Safari
Full support Yes |
WebView Android
Full support Yes |
Chrome Android
Full support Yes |
Firefox Android
Full support Yes |
Opera Android
Full support Yes |
Safari iOS
Full support Yes |
Samsung Internet Android
Full support Yes |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
Stylesheet.href by Mozilla Contributors is licensed under CC-BY-SA 2.5.