Results 1 to 8 of 8

Thread: What is wrong with this page?

  1. #1
    Join Date
    Oct 2007
    Posts
    49
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default What is wrong with this page?

    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
    Last edited by Defender90; 04-08-2008 at 01:02 PM.

  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    What isn't working about it? It seems fine to me in both IE6 & IE7.

  3. #3
    Join Date
    Apr 2006
    Posts
    190
    Thanks
    3
    Thanked 7 Times in 7 Posts

    Default

    its working fine here in IE7
    Ryan
    Sevierville, TN

  4. #4
    Join Date
    Oct 2007
    Posts
    49
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default

    You have to roll over the word Vendor List and select a vendor from the drop down menu.

  5. #5
    Join Date
    Apr 2006
    Posts
    190
    Thanks
    3
    Thanked 7 Times in 7 Posts

    Default

    Well lets see now

    Address on vendor lists are coming up as

    Code:
    http://www.campbelljewelers.com/hicks/Products/href=
    Your problem is here highlighted in blue:

    Code:
    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:

    Code:
    <a href="href="<a href="tri.html">Tri City Marble</a>
    Correct way to make a link:

    Code:
    <a href="tri.html">Tri City Marble</a>
    Ryan
    Sevierville, TN

  6. #6
    Join Date
    Sep 2007
    Location
    The Netherlands
    Posts
    1,881
    Thanks
    49
    Thanked 266 Times in 258 Posts
    Blog Entries
    56

    Default

    Quote Originally Posted by Defender90 View Post
    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.

  7. #7
    Join Date
    Oct 2007
    Posts
    49
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default Thanks!

    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

  8. #8
    Join Date
    Mar 2008
    Posts
    122
    Thanks
    17
    Thanked 5 Times in 5 Posts

    Default

    hey u said u just learning? maybe i could give u a HTML /XHTML tut ? contact me if u want.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •