onload

by hannahtaylor

HTML

<img src="https://i.ytimg.com/vi/eNeRyBUCGV4/maxresdefault.jpg" width="300px" height="auto"
 alt="tiny cat" onload="message()">
<p id="text"></p>

JavaScript

function message() {
	document.getElementById('text').innerHTML = 'The image has loaded';
}