JSFiddle - React, Tailwind, and code Playground
by chauhangs
HTML
<img alt="img-estate" src="http://jqueryui.com/resources/demos/tooltip/images/st-stephens.jpg" id="img" />
JavaScript
$(function() {
$('img').click(function(){
var newImage = 'http://jqueryui.com/resources/demos/tooltip/'; $('#img').attr('src',newImage+'images/tower-bridge.jpg');
return false;
});
});