Ver Mensaje Individual
  #7 (permalink)  
Antiguo 05/05/2005, 12:51
Avatar de chalchis
chalchis
 
Fecha de Ingreso: julio-2003
Mensajes: 1.773
Antigüedad: 20 años, 10 meses
Puntos: 21
a ver aqui hay unos detalles

<select name='producto_id'>
<option value='1'>&nbsp;Ultima hora Nacional&nbsp; - uhna&nbsp;</option>
<option value='2'>&nbsp;Ultima Hora Internacional&nbsp; - uhin&nbsp;</option>
<option value='3'>&nbsp;Horoscopo&nbsp; - horo&nbsp;</option>
<option value='4'>&nbsp;Deportes&nbsp; - depo&nbsp;</option>
</select>

<input name="noticias[]" type=text class="campo" size=15 maxlength="10">
<input type="text" maxlength="3" size="3" name="remLen" disabled>

y si deseas limitar un numero de caracteres usa mejor esto

<script language="JavaScript">
function maximaLongitud(texto,maxlong) {
var tecla, in_value, out_value;

if (texto.value.length > maxlong) {
in_value = texto.value;
out_value = in_value.substring(0,maxlong);
texto.value = out_value;
return false;
}
return true;
}
</script>

<textarea name="nombre_textarea" cols="50"
rows="5" onKeyUp="return maximaLongitud(this,254)">
__________________
gerardo