JSFiddle - React, Tailwind, and code Playground

by omarjuvera

HTML

<img src="https://placehold.it/350x150" alt="" onclick="goTo('img1');">

CSS

img { cursor: pointer; }

JavaScript

$( document ).ready(function() {

function goTo(img) {
	if( img === 'img1' ) { window.open('https://www.indiegogo.com/','_blank'); }
	else{ alert("This image is not recognized: " + img ); }
}

});