JSFiddle - React, Tailwind, and code Playground

by amrendra kumar

JavaScript

//b

const cbFunc = (e) => {
	console.log('ruiing', e.data)
}


document.addEventListener('testEvent', cbFunc, false)


//a
const evt = new Event("testEvent");
evt.data = {name: '123'}
document.dispatchEvent(evt);