Cita:
Iniciado por JuanKiller69 function validar(e)
{
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==8) return true;
if(tecla==9) return true;
res=/[A-Za-z\s\t]/;
tv = String.fromCharCode(tecla);
return res.test(tv);
}
PRUEBALO ASI! SALUDOS!
Amigo disculpa si fastidio mucho, pero no sale, bueno cabe mencionar que yo utilizo el navegador Firefox(tengo version 9.01), y ahi no funciona el TAB, lo probe e el IE y ahi si dio.
¿Como puedo hacerlo que fuincione el TAB(asi con Javascript) en el Firefox?
Gracias por tu ayuda
pd.- para q sirve el \t, pq no vi ningun cambio con eso.