Point Directly

liunx

Guest
I've just one text box on my web page and I want to make it so that the cursor is focused on the search form, so it's possible to start typing the query straight away.

IE blocks JS and active content, so, it'd be better to have it in CSS than JS.

Any help greatly appreciated.

ThanksThis does it;
document.forms['myForm'].myElementName.focus();

The blocking (<!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/showthread.php?s=&threadid=60248&highlight=yellow">http://www.webdeveloper.com/forum/showt ... ght=yellow</a><!-- m -->) of (local) scripts.
 
Back
Top