JSFiddle - React, Tailwind, and code Playground
HTML
<img id="img_holder" />
<br />
<button id="cmd-start-download" onclick="startDownload();">Start download</button>
<button id="cmd-stop-download" onclick="stopDownload();">Stop download</button>
CSS
#img_holder {
width: 300px;
height: 300px;
border-style: solid;
border-width: 1px;
}
JavaScript
$('#cmd-start-download').on('click', function() {
var imgUrl = 'http://imgsrc.hubblesite.org/hu/db/images/hs-2015-02-a-hires_jpg.jpg';
$('#img_holder').attr("src", imgUrl);
});
$('#cmd-stop-download').on('click', function() {
$('#img_holder').attr("src", "");
});