Hello, I'm having problems with a linked dropdown menu I've created. Actually, I downloaded it from somewhere so I don't reall yknow too much about this stuff. I can get the list to work fine on this page: http://www.workingholidayinfo.com/index2.php But when I try to get it to work one directory up it doesn't work, as on this page: http://www.workingholidayinfo.com/canadians/test.php Can anyone help? Thanks again, Kirsty
Change your path to absolute instead of relative. On the /canadians/test.php page your code is telling us that the script is located in "/canadians/chainedmenu.js" folder, and it's not working because there is no such script file there. Add a slash to the beginning of each src=" to show that the file is located in the root directory like this: <script language="javascript" src="/chainedmenu.js"></script> <script language="javascript" src="/config.js"></script> Code (markup):