appearing text or links

  • Thread starter Thread starter Ed
  • Start date Start date
E

Ed

Hi all: Using FP2003 win xp pro. I would like to create a table with 2
columns. the left column will have several rows. the right column will have
one row. when I hover over cells in left column I want items (graphics
and/or text) to appear in right cell. Is this possible? How?
 
They require JavaScript and CSS, and will work with any modern browser
if coded correctly.
Here, "Modern" includes Netscape4 (fails gracefully), but excludes
Opera 4 (fails messily)
 
Ronx,

I tried to create a fly-out menu using the link you provided below. Can
you better explain step #9 under "Create the Main Menu Bar"? A link to
what? I thought it was just suppose to have the next menu fly-out!

Am I missing something at this step? I've tried this before and couldn't
get it. :-(

I'm OK with following the rest of the steps, it just doesn't work because of
step 9.
 
You need to create a hyperlink that goes nowhere.
Hyperlink the text (Highlight the text, right click and choose
Hyperlink) and use "javascript:;" (without the quotes) as the
destination.

In code view this will look like:
<a href="javascript:;">here is some text</a> this is the second
bullet point on step 9.

The hyperlink is required so that the onmouseover event will work in
most browsers.
 
Back
Top