"wimvan" <> wrote in message
news: oups.com...
> Hi,
> I'm a nerd in javascript, but, after trying and retrying I'm addressing
> me to help.
> I have a page with three frames, a top-, a left- and a right-frame. a
> kind a title-frmae, a button-frame and an information-frame
> (mainframe).
> In te button-frame, I show thumbs (images) who refer to an album on the
> net. This is working for the moment. So, clicking on a thumb, a
> photocollection opens in the mainframe.
> Question: Can I have an onmouseover-event on a thumb, so that a little
> description of the album, the thumb is refering to, appears in a box in
> the mainframe ? And, of course, disappears whit the onmouseout-event.
> Of course, when clicking on that thumb, the collection must appear in
> the mainframe.
> It would be very nicefull, that when firing the event; the description
> (text and or image or a html-filename) is send as a parameter.
>
> Thx
>
> Wim Vanmaele
>
You don't need " onmouseover=" and " onmouseout=".
Just use "alt=" and, for Firefox, title="". For example,
<img src="http://www.google.com/intl/en/images/logo.gif"
border="0" width="276" height="110"
alt="Google" title="Google">
Pass the description to the frame as another parameter.
If it's not clear then show us your code and we'll comment.
|