Recent Questions
Q: There is a portion of my site that is set to produce frames and I was wondering if there is more information about setting links in a javascript collapsable menu to selected frame pages?
A: You can specify target parameter for each item in javascript collapsable menu individually.
For example you can specify the name of the frame in the menuItems where you would liketo open your link:
["|Home","testlink.htm", "default.files/icon1_s.gif", "default.files/icon1_so.gif", "", "Home Page Tip", "frame", "", "", "", ],
Q: Suppose if I get the single user license, then I see I wont be able to see the javascript code. If I have to handle events like clicking a tab or hover over a tab, how do I do it for the tab menu javascript?
A: Actually there is no need to change our source code to handle these events.
Actually you can use your own Javascript code instead standard links and html code inside item text. For example:
var bmenuItems = [
["text", "javascript:your_code_here"]
];
or
var bmenuitems = [
["<div onClick='urlSubstitution(\'transco/sheet.asp?stype=1\')'>Table of Contents</div>", ""]
];
Q: When I purchse your software/license, does this include any future updates?
Minor/Major?
I checked your site and FAQ but couldn't see any mention of this.
Any information would be appreciated.
A: All minor upgrades you'll get for free (for example, 1.5->1.7).
All major upgrades you'll get for free during 1 year (for example, 1.7->2.0).
For example, if there's some major upgrades (1.7 -> 2.0 -> 4.0)you'll get them for free during one year.
But if there'll be no major upgrades during some period (1.72 -> 1.81 -> 1.92). And after 3 year, for example, there will be major upgrade to 2.0. So you can upgrade for free.
We can offer you some discount for the major upgrade after one year.
Q: Is it possible for a javascript navigation barr item to have an associated "target"?
What I mean is I'd like to be able to open the page in a new window, so I'd need to specify the href as well as "target=_new" (in HTML anyway).
A: You can set target parameter for all items:
var itemTarget="_blank";
Where main - is the name of the main middle frame where you want to open the link.
or for each item individually:
["Home","testlink.html", "", "", "", "_blank", "", "", "", "", "", ],