HTML DOM Question: Download HTML DOM PDF

Explain How to change HTML Attribute using HTML DOM?

Tweet Share WhatsApp

Answer:

example to change HTML Attribute by using HTML DOM.
Example:
<html>
<body>
<img id="image" src="oldimage.gif">
<script type="text/javascript">
document.getElementById("image").src="newimage.jpg";
</script>
</body>
</html>
In the above example we load an image on HTML document by using id="image".Using DOM we get the element with id="image".JavaScript that we used in example to changes the src attribute from oldimage.gif to newimage.jpg

Download HTML DOM PDF Read All 10 HTML DOM Questions
Previous QuestionNext Question
Explain the syntax of UI object identifier used by DOM extension?What is XML family?