change HTML attribute values
Wed Jun 14 2023 00:40:14 GMT+0000 (Coordinated Universal Time)
Saved by
@lilliankagga
#javascript
<!DOCTYPE html>
<html>
<body>
<h2>What Can JavaScript Do?</h2>
<p>JavaScript can change HTML attribute values.</p>
<p>In this case JavaScript changes the value of the src (source) attribute of an image.</p>
<button onclick="document.getElementById('myImage').src='pic_bulbon.gif'">Turn on the light</button>
<img id="myImage" src="pic_bulboff.gif" style="width:100px">
<button onclick="document.getElementById('myImage').src='pic_bulboff.gif'">Turn off the light</button>
<button onclick="document.getElementById('myImage').src='pic_lighton.gif'">Turn on light</button>
<img id="myImage" src="pic_bulboff.gif" style="width:100px">
<button onclick="document.getElementById('myImage').src='pic_lightoff.gif'">Turn off light</button>
</body>
</html>
content_copyCOPY
Comments