Log in

View Full Version : What is wrong with this page?



Defender90
04-07-2008, 12:41 PM
I set up this page to open the vendor pages offsite pages in frame. It works in Firefox(although the dropdown menu(VENDORS) adds a space between each link that links to a dead page.)
Page doen't work in IE?

Any suggestions. Sorry for such basic questions, I'm just learning.


Thanks

Medyman
04-07-2008, 02:39 PM
What isn't working about it? It seems fine to me in both IE6 & IE7.

NXArmada
04-07-2008, 03:01 PM
its working fine here in IE7

Defender90
04-07-2008, 03:46 PM
You have to roll over the word Vendor List and select a vendor from the drop down menu.

NXArmada
04-07-2008, 05:33 PM
Well lets see now

Address on vendor lists are coming up as



http://www.campbelljewelers.com/hicks/Products/href=


Your problem is here highlighted in blue:



var menu1=new Array()
menu1[0]='<a href="href="<a href="field.html">Fieldstone</a>'
menu1[1]='<a href="href="<a href="york.html">Yorktowne Cabinets</a>'
menu1[2]='<a href="href="<a href="legacy.html">Legacy Cabinets</a>'


//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<a href="href="<a href="formica.html">Formica</a>'
menu2[1]='<a href="href="<a href="wilsonart.html">WilsonArt</a>'

//Contents for menu 3, and so on
var menu3=new Array()
menu3[0]='<a href="href="<a href="amerock.html">Amerock</a>'
menu3[1]='<a href="href="<a href="cliff.html">Cliffside</a>'
menu3[2]='<a href="href="<a href="hardware.html">Hardware Resources</a>'

//Contents for menu 4, and so on
var menu4=new Array()
menu4[0]='<a href="href="<a href="cambri.html">CambriaUSA</a>'
menu4[1]='<a href="href="<a href="lg.html">LG Viatera</a>'
menu4[2]='<a href="href="<a href="sile.html">Silestone</a>'
menu4[3]='<a href="href="<a href="corian.html">Corian</a>'
menu4[4]='<a href="href="<a href="zodiac.html">Zodiaq</a>'
menu4[5]='<a href="href="<a href="megan.html">Meganite</a>'
menu4[6]='<a href="href="<a href="avan.html">Avanza USA</a>'
menu4[7]='<a href="href="<a href="wilsonss.html">WilsonArt</a>'
menu4[9]='<a href="href="<a href="akro.html">Akropolis Marble</a>'
menu4[10]='<a href="href="<a href="tri.html">Tri City Marble</a>'


Invalid way of making a link:



<a href="href="<a href="tri.html">Tri City Marble</a>


Correct way to make a link:



<a href="tri.html">Tri City Marble</a>

molendijk
04-07-2008, 05:41 PM
Page doen't work in IE? ...Any suggestions.In the Vendor list, you have lines like:
menu1[0]='<a href="href="<a href="field.html">Fieldstone</a>'
That should be:
menu1[0]='<a href="field.html">Fieldstone</a>'
etc.

(I wonder why Firefox excepts this!!).
---
Arie Molendijk.

Defender90
04-07-2008, 05:51 PM
Thanks for all your help. That did the trick. I do have a lot of errors on the page regarding those links still:

< found between tags. Consider using the equivalent entity (&amp = '&', &lt = '<', &gt = '>', &quot = quotation mark). [XHTML 1.0 transitional]
]]>

This is at each line where the links are. Even after making the changes.
Thanks again for all your help. This is such a great site!!

Hopefully someday I will know enough to actually answer a question rather than ask

hmsnacker123
04-08-2008, 04:16 PM
hey u said u just learning? maybe i could give u a HTML /XHTML tut ? contact me if u want.:)