JSFiddle - React, Tailwind, and code Playground
by Arvind Pal
HTML
<input type="text" name="arv" id="tipo-imovel" />
JavaScript
$("#tipo-imovel").live("click change", function(event){
alert(event.id + " is fired");
});
by Arvind Pal
<input type="text" name="arv" id="tipo-imovel" />
$("#tipo-imovel").live("click change", function(event){
alert(event.id + " is fired");
});