26/07/2002, 00:09
|
Usuario no validado | | Fecha de Ingreso: julio-2001
Mensajes: 766
Antigüedad: 23 años, 6 meses Puntos: 0 | |
Re: Funcion con Input Text y esta es una pequeña modificasion al script anterios haber si te gusta
<script language="Javascript">
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
else if(thefield.value=="")
thefield.value = thefield.defaultValue
}
</script>
</script>
<center>
muestra un texto inicial, y lo elimina al recibir el foco
<form>
<input type="text" value="pon aqu&iacute; tu nombre" onBlur="clearText(this)" onFocus="clearText(this)">
</form>
</center>
<center><hr size="1" width="100%" noshade><a href=javascript:MsgrApp.LaunchIMUI('gpa36@hotmail. com')>
<strong><font face="courier new" color="#666666" size="2">Contact Me?[/CODE]</strong>
<IMG SRC="http://woertman.org:8080/msn/gpa36" border="0"></A></ce |