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!
Dreamweaver XHTML dropdown menu not working in Firefox
Collapse
X
-
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
Comment