1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-08-24 21:35:53 -04:00
elinks/test/ecmascript/setAttribute.html

27 lines
469 B
HTML
Raw Normal View History

2021-06-02 12:26:05 -04:00
<!DOCTYPE html>
<html>
<head>
<style>
.democlass {
color: red;
}
</style>
</head>
<body>
<h1>Hello World</h1>
<p>Click the button to add a class attribute with the value of "democlass" to the h1 element.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementsByTagName("H1")[0].setAttribute("class", "democlass");
window.alert(document.getElementsByTagName("HTML")[0].outerHTML);
2021-06-02 12:26:05 -04:00
}
</script>
</body>
</html>