JSFiddle - React, Tailwind, and code Playground

by Aldi Unanto

HTML

<img src="aa" alt="the_image" />
<button>remove function</button>

CSS

img{ width: 40px; height: 40px; }

JavaScript

function event(){ alert('Hello'); }

$(function(){
    $('img').click(function(){
        event();
    });
    $('button').click(function(){
        $('img').unbind('click');
    });
});