PDA

View Full Version : No idea how to ask about this...


richard_r
06-27-2002, 05:10 AM
If I have a set of links that can only be seen when a person mouseOvers the original link...

1 // first link

onmouseover of 1, displays the below

1 // first link
1a ... // 1a sublink of 1(first link)
2a ... // 2a sublink of 1(first link)

onmouseover of 1 / 1a, displays 1 / 1a / a

1 // first link
1a ... // 1a sublink of 1(first link)
1a/a ... // 1a/a sublink of 1a(1st sublink of 1(first link))
2a ... // 2 sublink of 1(first link)

onmouseover of 2a, displays the below

1 // first link
1a ... // 1a sublink of 1(first link)
2a ... // 2a sublink of 1(first link)
2a/a ... // 2a/a sublink of 2a(2nd sublink of 1(first link))


I am I able to do this? Or would I have to use transparent Java Applets or something.. I am hoping that I could use mouseovers or something..

Please Help me




Richard

premshree
06-30-2002, 07:58 AM
You are probably looking for HTML menus....
Try http://www.dynamicdrive.com

richard_r
06-30-2002, 03:25 PM
I am checking it out right now..