Hey all!
When you enter a website, such as [url]http://mail.yahoo.com,[/url] how do you make the text cursor initially start in the textbox?
Thanks! -influx.
just give the form a name like <form name="form1" action="/script.php" method="POST"> <input type="text" name="email"> ... </form>
in your body tag, put <body onload="document.form1.email.focus();">
that will place the cursor there on the page load.