13/09/2006, 10:56
|
| Colaborador | | Fecha de Ingreso: febrero-2002 Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses Puntos: 772 | |
Hola de nuevo.
Prueba esto:
Código:
function currencyFormat(fld, milSep, decSep, e,limite,decimales) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==13) return false;
if (fld.value.length>limite)
return false;
Saludos, |