Ver Mensaje Individual
  #4 (permalink)  
Antiguo 05/08/2008, 13:56
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Consulta Basica sobre Ajax con prototype

Mmm prueba checando el estatus del request, este debe de ser on404:
Código:
function pruebaAjax2()
{

new Ajax.Request
 ("www.yah,sdads.c",
    {
       parameters : "name=Fred"},
       on404: function() {
              alert( "Ups no existe el URL" );
       }
   );
     
}
Saludos.