mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
19 lines
471 B
HTML
19 lines
471 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
<p>Click the button to display the base URI of the document.</p>
|
||
|
<button onclick="myFunction()">Try it</button>
|
||
|
<p><strong>Note:</strong> The baseURI property is not supported in Internet Explorer.</p>
|
||
|
<p id="demo"></p>
|
||
|
<script>
|
||
|
function myFunction() {
|
||
|
var x = document.baseURI;
|
||
|
console.assert(x.endsWith('document.baseURI.html'), 'baseURI');
|
||
|
}
|
||
|
|
||
|
console.error('document.baseURI');
|
||
|
myFunction();
|
||
|
console.exit(0);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|