JSFiddle - React, Tailwind, and code Playground
HTML
<img id="fullResImage" src="http://placehold.it/300x300" alt="">
JavaScript
$(document.body).on('click', '#fullResImage', function(){
window.open(this.src);
});
<img id="fullResImage" src="http://placehold.it/300x300" alt="">
$(document.body).on('click', '#fullResImage', function(){
window.open(this.src);
});