Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/05/2008, 11:45
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: se salta el if

Prueba agregar esto al principio de tu script:
Código:
String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g,'') }
Luego haz esto:
Código:
var respuesta=ajax.responseText.trim();
Y checa si ya funciona como debería.

Saludos.