
Sorry, newbie..How catch mouse click on image ?
Depends on your definition of "common". if NS4 falls into this category,
then no, images do not always fire onclick events in common browsers. To
see which objects support which events in NS4, check the client-side
JavaScript reference at http://developer.netscape.com.
=-=-=
Steve
-=-=-
Quote:
> Do images really always get onclick events fired in common browsers? The
> reason I ask is that I have been doing <A HREF="#" to get an onclick event.
> If I do not have to do this I will be happy.
> Thanks
> S
> > <IMG id=myimg src=whatever onclick="handleit()" language=vbs>
> > Then write a sub for the handleit() call.
> > steve
> > > I need to catch a mouse click on an image!
> > > Thanks.