frontpage 2003 set cursor

P

popcorn209

How do I set the cursor to begin in a specific form field when the page is
accessed? I know about the tab order and that doesn't let me tell it where I
want the cursor to appear when the page is first brought up.
 
X

xyz

you can make use of javascript to set the cursor at particular form field.
e.g. if u have a form named "frm" with a text filed named "T1" in it, u can
write ur body tag in following manner to reflect the behaviour u r wanting :

<body onload="{frm.T1.focus()}">

Hope this helps ...... :)

==========
 
Top