1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/test/ecmascript/doctype.html

22 lines
460 B
HTML
Raw Normal View History

2021-05-25 16:12:04 +00:00
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the doctype name of the document.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> In Internet Explorer 8 and earlier, the doctype property returns <em>null</em> for HTML and XHTML documents, and will only work for XML documents.</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.doctype.name;
window.alert(x);
2021-05-25 16:12:04 +00:00
}
</script>
</body>
</html>