JSFiddle - React, Tailwind, and code Playground

by _anil

HTML

<script src="https://raw.github.com/jackmoore/colorbox/master/jquery.colorbox.js"></script>
<span id="test" href="taget">clickme</span>
<div id>
<span>dummy1</span>
<span>dummy1</span>
<div>

JavaScript

$('#test').colorbox({
    width:800
});

$(document).bind('cbox_closed', function(){
        console.log('hello');
});