JSFiddle - React, Tailwind, and code Playground
by JAAulde
HTML
<div id="foo"></div>
JavaScript
$.widget( 'jaa.bar', {
_create: function()
{
console.log( 'creating' );
},
_setOption: function( key, value )
{
$.Widget.prototype._setOption.apply( this, arguments );
}
});
$( '#foo' ).bar();
$( '#foo' ).bar();