Archive for August 6th, 2007

Default text in textbox (onLoad)

Monday, August 6th, 2007

Note : This needs javascript to be enabled in your browser

In Head Section

<script>
function srefocus()
{
if(document.log.username1.value!=”")
var s=1
else
document.log.username1.value=’abc@abc.com’
}
function soonfocus()
{
if(document.log.username1.value!=”")
{
if(document.log.username1.value==’abc@abc.com’)
document.log.username1.value=”
}
else
document.log.username1.value=’abc@abc.com’
}
</script>

In Form Section:

<input name=”name” type=”text” onfocus=”soonfocus()” value=”a@a.com” onblur=”srefocus()”>

Posted BY B.SURESH 

Posted by Suresh B