Dreamweaver XHTML dropdown menu not working in Firefox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nickol77
    New Member
    • Mar 2008
    • 1

    Dreamweaver XHTML dropdown menu not working in Firefox

    I created a web page in Dreamweaver using their dropdown menu utility, I converted the page to HTML to XHTML. the dropdowns works fine in IE, but not Firefox? Help!
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    Have you validated the page? Does HTML work?

    Comment

    • drhowarddrfine
      Recognized Expert Expert
      • Sep 2006
      • 7434

      #3
      Don't understand why you would convert to XHTML since:
      1) XHTML served as XHTML does not work in IE
      2) You are serving XHTML as HTML

      You are using the xml declaration on your very first line. Only modern browsers know what to do with this. IE is not a modern browser and chokes on it, going into quirks mode. You can safely remove that line since you aren't serving XHTML anyway and it will make IE attempt to act like the rest of the world.

      There is no such thing as "language="Java script" and you are not using the 'type' attribute. Change this:
      <script language="Javas cript"> to this:
      <script type="text/javascript">

      None of this probably has anything to do with your drop down problem but, if it doesn't help now, it will help later.

      Comment

      Working...