Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Javascript Menu .. need advice

Status
Not open for further replies.

MacBusa

Vendor
Jun 16, 2007
2
AU
I'm working on a site that i'm playing around with and am using 3 frames (header, menu, bottom) I have my menu working but i can't get it to link to pages and open up within a certain frame (being 'bottom' frame)

Anyone know what i'm missing or doing wrong?

Link is blingpartsaustralia.com/mywebs2/framespage.htm

check it out and see what needs to be touched up..

Thankyou for your time in advance.

Regards
Grant.
 
Mac, in your code you have this line

Code:
<a class='bi'"+g+" href='"+n[i]+q+st[i]+a+su[i]+r+m[i]+t+"

1. you have not closed this off correctly so you will have problems with the link
2. you need to give it a target i.e.

Code:
<a class='bi'"+g+" href='"+n[i]+q+st[i]+a+su[i]+r+m[i]+t+"' target='bottom'>

Think I saw 2 occurances of this that you will need to change.

Cheers

Nick
 
Thanks for that Nick, I have fixed that up now.

Cheers
Grant
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top