[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: writing to frames
>I have a list of links in one frame. On a mouseover() event I want a brief
>description of the currently selected link to be written in another small
>frame in the user window. How can I write to other frames in a window from
>within this frame?
In the frame in which you want the description to appear, add the
following:
<form>
<input type="text" value="" size=60 name="display">
</form>
(Please check the 'size' item, as it may be width -- I just can't
remember off hand.)
>From the frame with the links, the tag should be as follows:
<a href="somelocation" onmouseover="document.forms[0].display.value='Some
brief explanation'">...</a>
I believe that should do the trick. For enhancements, try adding a
timeout so that the explanation is only displayed for a brief period
(five seconds, say). This is a technique I don't personally use and am
not familiar enough with it to include the coding here. For an example of
onmouseover with the explanation in the status line, you're all welcome
to visit a site currently under development at
http://www.panix.com/~sdpalmer/ipo2
Regards,
SETH
--------------------------------------------------------------------
For help about the list, please send a message to 'majordomo@obscure.org'
with the message body 'help'. To unsubscribe, send a message to
'majordomo@obscure.org' with the message body 'unsubscribe javascript'.
List archives and pointer to FAQ: http://www.obscure.org/javascript/