1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-01 02:05:33 +00:00
elinks/test/ecmascript/baseURI.html

15 lines
357 B
HTML
Raw Normal View History

2021-05-25 10:22:52 +00:00
<!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;
window.alert(x);
2021-05-25 10:22:52 +00:00
}
</script>
</body>
</html>