JSFiddle - React, Tailwind, and code Playground

HTML

<button id="ele">Teste</button>

JavaScript

function hello(event) {
    alert(event.data.msg);
}

$('#ele').on('click', {msg: 'Teste'}, hello);