JSFiddle - React, Tailwind, and code Playground
by rodrigonery
HTML
<!-- Exemplo -->
<input type="text">
JavaScript
var Navegador = function ( elem, str ) {
this.elem = $(elem);
this.str = str;
}
Navegador.prototype._navigate = function () {
alert(this.elem);
var $seletor = this.elem;
$seletor.on("click", function () {
alert( this.str );
});
}
var meuNavegador = new Navegador('input', 'Olá');
meuNavegador._navigate();