Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/07/2002, 15:28
Uzuriaga
 
Fecha de Ingreso: mayo-2001
Mensajes: 7
Antigüedad: 23 años, 1 mes
Puntos: 0
Disculpen, soy principiante

Amigos, disculpen la ignorancia pero ¿A donde son remitidos los formularios como este?. Porque no hay ninguna direccion de Mail en el formulario para que sea destinatario. ¿Como se utilizan y para que sirven?


<script>
<!--

/*Form Characters check script credit-Website Abstraction (www.wsabstract.com) 200+ free JavaScripts here!
*/

function checkchars(cur){
//change max length to determine below
var maxlength=50
if (cur.chars.value.length>maxlength){
alert("Please restrain your input to 50 or less characters!")
return false
}
}
//-->
</script>

<form onsubmit="return checkchars(this)">
<strong>In 50 chars or less, please type a short description of yourself:</strong><br><textarea rows="5" cols="38" name="chars"></textarea>
<br><input type="submit" value="Submit!">
</form>