JSFiddle - React, Tailwind, and code Playground

by Imabot

HTML

<h1>.setAttribute</h1>

<div>
	<button onclick="document.getElementById('target').setAttribute('src', 'https://lucidar.me/en/web-dev-class/files/bb-young.jpg')">Young</button>
	<button onclick="document.getElementById('target').setAttribute('src', 'https://lucidar.me/en/web-dev-class/files/bb-old.jpg')">Less young</button>
</div>

<img id="target" src="https://lucidar.me/en/web-dev-class/files/bb-young.jpg">