el archivo busqueda.php es el que hace la consulta a la BD, en este caso solo me pasa la variable qureyString con el valor apellido, se podria pasar de alguna forma tambien la variable nombre ? no se como...
Cita:
function campo2(apellido) {
if(nombre.length == 0) {
// Hide the suggestion box.
$('#suggestions').hide();
} else {
$.post("busqueda.php", {queryString: ""+apellido+""}, function(data){
if(data.length >0) {
$('#suggestions').show();
$('#autoSuggestionsList').html(data);
}
});
}
}
function campo_1(thisValue) {
$('#nombre').val(thisValue);
setTimeout("$('#suggestions').hide();", 200);
}
if(nombre.length == 0) {
// Hide the suggestion box.
$('#suggestions').hide();
} else {
$.post("busqueda.php", {queryString: ""+apellido+""}, function(data){
if(data.length >0) {
$('#suggestions').show();
$('#autoSuggestionsList').html(data);
}
});
}
}
function campo_1(thisValue) {
$('#nombre').val(thisValue);
setTimeout("$('#suggestions').hide();", 200);
}