View Single Post
  #9 (permalink)  
Old 07-16-2008, 01:50 PM
curtiss's Avatar
curtiss curtiss is online now
Moderator
 
Join Date: May 2003
Posts: 1,438
Joan - the problem with that line is that you open a quote and never close it.

Code:
window.mm_menu_0210154828_0 = new Menu(","#CCCCCC","#66CC66","#336600","center",3,0,1000,-5,7,true,false,true,0,true,true);
  mm_menu_0210154828_0.addMenuItem(");
should be:
Code:
window.mm_menu_0210154828_0 = new Menu("","#CCCCCC","#66CC66","#336600","center",3,0,1000,-5,7,true,false,true,0,true,true);
  mm_menu_0210154828_0.addMenuItem("");
Quote:
The other thing to say was that when you browse with Firefox, there are no errors!Regards and thanks
Did you install the Web Developer toolbar like I recommended? That is the extension that includes the powerful javascript debugger.

Good luck
__________________
I hate Internet Explorer! Anyone with me?
Reply With Quote