JSFiddle - React, Tailwind, and code Playground

by bjoerne

HTML

<img src="http://www.welpen-welt.de/images/erziehung/b1.gif" alt="" usemap="#map" />
<map name="map">
    <area id="area" shape="poly" coords="50,50,200,50,200,200,50,200" href="#" />
</map>
<div id="msg"></div>

JavaScript

$('#area').on('click', function(e) {
    e.preventDefault();
    $('#msg').html('area clicked');
});