Hola, tengo este cod:
Código Javascript
:
Ver originalfunction filtrar()
{
$.ajax({
data: $("#frm_filtro").serialize()+ordenar,
type: "POST",
dataType: "json",
url: "ajax.php?action=listar",
beforeSend:function(){
$('.carga1').css('display','block');
$('.carga1').html("<img src='imagenes_menu/ajax-loader4.gif' align='center' /><br />Cargando...");
},
complete: function() {
$(".carga1").show();
$(".carga1").hide();
},
success: function(data){
var html_user ='' ;
if(data.length > 0){
$.each(data, function(i,item){
html_user += '<tr ondblclick="pulsar(this, ' + String.fromCharCode(39) + item.NUM_USUARIO + String.fromCharCode(39) + ');" >';
html_user += '<td ><input name="demo" type="radio" value="' + item.NUM_USUARIO + '"/></td>';
html_user += '<td id="row0" >'+item.NUM_USUARIO+'</td>';
html_user += '<td>'+item.telefono+'</td>';
html_user += '<td>'+item.nombre+' '+item.apellidos+'</td>';
html_user += '<td>'+item.poblacion+'</td>';
html_user += '</tr>';
});
}
if(html_user == '') html_user = '<tr><td colspan="4" align="center">No se encontraron registros..</td></tr>';
$("#data tbody").html(html_user);
$('.carga').html('');
}
});
}
Esta funcion me lista un array en un archivo llamado ajax.php y lo que quiero es que cuando no se encuentren resultados me liste otro array en otro archivo llamado ajax1.php. Supongo que tendre que hacerlo a partir de aquí no?:
Código Javascript
:
Ver originalif(html_user == '') html_user = '<tr><td colspan="4" align="center">No se encontraron registros..</td></tr>';
pero como?
Saludos y Feliz Navidad.