Determine if an image has focus after leaving another image.

  • Thread starter Thread starter Thomasa Gregg
  • Start date Start date
T

Thomasa Gregg

I need to be able to determine if an image has focus after a onmouseout
function has been ran from another image.

any ideas?

Thanks
 
Yea -- I have an idea -- try reading JavaScript documentation [1]
and learn about the event model using event handlers using

Google: "javascript"+"event model"
Google: "javascript"+"event handlers"

The specific event handler for your current task is the onFocus
event handler [2] and I close in saying the DevGuru resources I
refer to [2] have been a great help to me as a neophyte.

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

[1] http://devedge.netscape.com/library/manuals/2000/javascript/1.5/reference/
[2] http://www.devguru.com/Technologies/ecmascript/quickref/evhan_onfocus.html
 
Back
Top