JSFiddle - React, Tailwind, and code Playground

by BramVanroy

HTML

<img id="tre" src="http://bgc-dml.wdfiles.com/local--files/how-to%3Aimages/image4.jpg" alt="">
<input id="unos" type="submit" name="change_src" value="change image" />

JavaScript

$('#unos').click(function() {
    $("#tre").attr('src', 'http://www.dreamincode.net/forums/uploads/monthly_05_2010/post-380028-12747928967239.jpg');
});