Problem w/ expanding menus

GD.Diego / 2008-09-11 01:25:24   

I am having problems with my sub titles. The main titles work as buttons but nothing drops down. I have lookeed into my html code and I believe every seems fine, but I believe it has something to do with my javascripting. Not too sure. I really could use someones help.

This is my site

jaredh272 / 2008-09-11 03:54:45   

It works fine for me on FF 3.0.1-Mac, but not on Safari.

  1. Just a guess, maybe your code that reads:
  2. path = 'http://www.diegobydesign.com/files/gimgs/';
  3. $(document).ready(function()
  4. {
  5. ¬†¬†¬†¬†setTimeout('move_up()', 1);
  6. ¬†¬†¬†¬†$(document).ready(function() 
  7. ¬†¬†¬†¬†{ setTimeout('move_up()', 1);
  8. ¬†¬†¬†¬†expandingMenu(0); 
  9.     expandingMenu(1);
  10.     expandingMenu(2);
  11.     expandingMenu(3);
  12.     expandingMenu(4);
  13.     expandingMenu(5);
  14. ¬†¬†¬†¬†expandingMenu(6); });
  15.     
  16. });
  1. ... should read:
  2. path = 'http://www.diegobydesign.com/files/gimgs/';
  3. $(document).ready(function()
  4. {
  5. ¬†¬†¬†¬†setTimeout('move_up()', 1);
  6. ¬†¬†¬†¬†expandingMenu(0); 
  7. ¬†¬†¬†¬†expandingMenu(1); 
  8. ¬†¬†¬†¬†expandingMenu(2); 
  9.     expandingMenu(3);
  10.     expandingMenu(4);
  11.     expandingMenu(5);
  12. ¬†¬†¬†¬†expandingMenu(6); });

This thread has been closed, thank you.