Hi there,
i've got a web page with a form on it.... i would like it when the page loads up, that the cursor automatically starts flashing in the first text field.
Right now, the page loads up and i have to click in that first text field before I can type. I'd like to make this step quicker.
Thanks,
-dr
You'll have to do this in JavaScript. Name the form and the field, and then in the body tag just do:
<body onload="document.formName.fieldName.focus()">
where formName and fieldName are you form and field names respectively.
Diego