JSFiddle - React, Tailwind, and code Playground
by spekary
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>bob</title>
</head>
<body>
<div id="div1"></div>
</body>
</html>
JavaScript
(function($){
$.widget("np.hAutocomplete", $.ui.autocomplete, {
_create: function () {
$.ui.autocomplete.prototype._create.call(this);
this.element.data('autocomplete', this.element.data('hAutocomplete'));
}
})(jQuery);
$("#div1).autocomplete();