Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting focus on an image

Status
Not open for further replies.

stewartwebb

Programmer
Jan 6, 2004
92
GB
this is probably an easy question but for some reason I can not get it working.

How do you set an image to being focus?
 
Not sure why you want the focus there, but...

<img src="pic.jpg" onLoad="this.focus()">


OR

<body onLoad="document.getElementById('myPic').focus()">

<img id="myPic" src="pic.jpg">

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook (No, I'm not Rick)

zen.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top