Is there anyway to force the cursor to appear in a certain form field upon loading the page?
thanx, karita
javascript is the way to do this.
you wouldnt happen to know a script that would do that would you...i am not very confindent writing my own javascript to do this.
thanx karita
<pre> <script language="javascript"> <!-- function setfocus() { document.form_name.box_name.focus(); } --> </script> </pre> change form_name to the form name and box_name to the form element name. In your body tag add onLoad="setfocus()"
Jim