Cita:
¿Hay alguna forma de poner el autocomplete en el evento onchange del input text?$(".container").ready(function() {
if($("input#city").length){
$("input#city").each(function(){
var nombre=$(this).attr("id");
$("input.city").autocomplete({
source: "autocomplete.php",
select: function(event, ui) {
for (i=00;i<20;i++) {
if($("#"+nombre+"_"+i).length){
alert("existe")
} else {
var new_element = nombre+"_"+i;
if(create_new_city_(new_element,i)){
//create_new_city es la funcion que crea el elemento pasandole el nombre del elemento
alert("se ha creado el nuevo textbox");
return false;
}else{
alert("No se ha creado");
};
}
};
}
});
})
}
});
if($("input#city").length){
$("input#city").each(function(){
var nombre=$(this).attr("id");
$("input.city").autocomplete({
source: "autocomplete.php",
select: function(event, ui) {
for (i=00;i<20;i++) {
if($("#"+nombre+"_"+i).length){
alert("existe")
} else {
var new_element = nombre+"_"+i;
if(create_new_city_(new_element,i)){
//create_new_city es la funcion que crea el elemento pasandole el nombre del elemento
alert("se ha creado el nuevo textbox");
return false;
}else{
alert("No se ha creado");
};
}
};
}
});
})
}
});
Gracias