If I try to open flash drop down menu links from the another page non of them work
Return to Recent Questions
Q:
I do have issues. There are not the problems when you are on the
home page (you can click on one of the dropdown submenus and go there.
However, when you try to go to another page from there to another page on a
nother drop down, nothing happens except javascript erros. The dropdowns
physical work, in that they drop down, but the links don't go anywhere.
Does that make sense.
A:
See, the problem was in your dmWorkPath parameter
On all pages placed in the subfolder you should write it in the
following way:
<script type="text/javascript">var dmWorkPath = "../ifnav.files/";</script>
Please, correct it.
You should also use additional parameters to make menu paths absolute:
var pathPrefix_img = "http://domain.com/images/";
var pathPrefix_link = "http://www.infocusnet.org/design/";
These parameters allow to make images and links paths absolute.
For example:
var pathPrefix_img = "http://domain.com/images/";
var pathPrefix_link = "http://www.infocusnet.org/design/";
var menuItems = [
["text", "index.html", "icon1.gif", "icon2.gif"],
];
So, link path will be look so:
http://domain.com/pages/index.html
Images paths will be look so:
http://domain.com/images/icon1.gif
Please, use pathPrefix_link parameter.
Return to Recent Questions
|