Places the focus on the first editable field in a form on any web page
Source Code
<script LANGUAGE="JavaScript">
<!-- Begin
function placeFocus()
{
if (document.forms.length > 0)
{
var field = document.forms[0];
for (i = 0; i < field.length; i++)
{
if
((field.elements[i].type == "text") || (field.elements[i].type ==
"textarea"))
{
document.forms[0].elements[i].focus();
break;
}
}
}
}
// End -->
</script>
Send mail to santhosh_emids@yahoo.com with questions or comments about
this web site.
Last modified: November 12, 2000