I have created aKaspersky menu, but the links don't work in javascript menu tab
Return to Recent Questions
Q:
I have created aKaspersky menu, but the links don't work.
A:
See, you can use links if you have
var tabMode=1;
only.
If you have
var tabMode=0;
You should use the ID of the DIV.
But you can try to open your pages using different targets in the
following way
["tab text", "javascript: window.open('test.html', 'frameName')", ...],
["tab text", "javascript: window.open('test.html', '_self')", ...],
["tab text", "javascript: window.open('test.html', '_blank')", ...],
Where frameName - the name of the frame where to open the page test.html.
Using this method you can create Deluxe Tabs in
var tabMode=0; and var tabMode=1;
Return to Recent Questions
|