Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-18-2006, 08:49 PM   PM User | #1
nikko50
Regular Coder

 
Join Date: May 2004
Posts: 380
Thanks: 63
Thanked 0 Times in 0 Posts
nikko50 is an unknown quantity at this point
form field focus

Is it possible to place focus on a text field without using body onload??
nikko50 is offline   Reply With Quote
Old 01-18-2006, 08:52 PM   PM User | #2
vwphillips
Senior Coder

 
Join Date: Mar 2005
Location: Portsmouth UK
Posts: 4,379
Thanks: 3
Thanked 466 Times in 453 Posts
vwphillips is a jewel in the roughvwphillips is a jewel in the roughvwphillips is a jewel in the rough
onload=document.getElementById('mytextfieldid')focus();"
vwphillips is offline   Reply With Quote
Old 01-18-2006, 08:54 PM   PM User | #3
nikko50
Regular Coder

 
Join Date: May 2004
Posts: 380
Thanks: 63
Thanked 0 Times in 0 Posts
nikko50 is an unknown quantity at this point
How about without using <body onload>? Thanks
Tracy
nikko50 is offline   Reply With Quote
Old 01-18-2006, 09:49 PM   PM User | #4
arnyinc
Regular Coder

 
Join Date: Jan 2003
Posts: 867
Thanks: 4
Thanked 8 Times in 8 Posts
arnyinc is an unknown quantity at this point
vwphillips suggestion can be placed in a javascript block, not in the body tag.

Just out of curiousity, why don't you want it in the <body onload>?
arnyinc is offline   Reply With Quote
Old 01-18-2006, 10:19 PM   PM User | #5
vwphillips
Senior Coder

 
Join Date: Mar 2005
Location: Portsmouth UK
Posts: 4,379
Thanks: 3
Thanked 466 Times in 453 Posts
vwphillips is a jewel in the roughvwphillips is a jewel in the roughvwphillips is a jewel in the rough
you can also use window onload

or use th call a function as previous post if the block is placed after the textbox element

plus typo
should be
onload=document.getElementById('mytextfieldid').focus();

Last edited by vwphillips; 01-18-2006 at 10:22 PM..
vwphillips is offline   Reply With Quote
Old 01-19-2006, 03:23 AM   PM User | #6
glenngv
Supreme Master coder!


 
glenngv's Avatar
 
Join Date: Jun 2002
Location: Los Angeles, CA Original Location: Philippines
Posts: 10,241
Thanks: 0
Thanked 112 Times in 111 Posts
glenngv will become famous soon enough
Typo too?
Quote:
Originally Posted by vwphillips
plus typo
should be
onload=document.getElementById('mytextfieldid').focus();
Should it be
Code:
onload=function(){document.getElementById('mytextfieldid').focus()};
?
__________________
Glenn
_____________________________________________
Play Tower of Hanoi Android app (Ad-FREE!)
Play Tower of Hanoi Android app (FREE!)
Go to Tower of Hanoi Leaderboard
Play Tower of Hanoi Facebook app
glenngv is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:11 PM.


Advertisement
Log in to turn off these ads.