HighDots Forums  

Re: onload

Javascript JavaScript language (comp.lang.javascript)


Discuss Re: onload in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
RobG
 
Posts: n/a

Default Re: onload - 06-01-2005 , 03:08 AM






ganeshnarayan wrote:
Quote:
Hi, i have a form with name "abc". in that i have 4 textboxes(inputbox)
and one hyperlink(name/id ="qqq").

On loading the page i need the focus to the hyperlink.

How can i achieve this?
<script type="text/javascript">

function focusOnLink(x) {
x = document.links[x] || document.all[x];
if ( x && x.focus ) x.focus();
}

</script>

<body onload="focusOnLink('qqq');">

<a name="qqq" id="qqq" href="..." ... >...</a>


--
Rob


Reply With Quote
Reply




Thread Tools
Display Modes

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

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



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.