JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <object>
        
    </object>
</div>

CSS

div {
width: 300px;
height: 300px;   
}

object {
 width: 300px;
height: 300px;
 background: #ddd; 
    
}

JavaScript

$('div').click(function(){
    alert('hey I just met you, and this is crazy');
});