Answers

Question and Answer:

  Home  HTML DOM

⟩ Explain How to change HTML Attribute using HTML DOM?

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

 220 views

More Questions for you: