Use this version of the script (modified from your copy of it, right click and 'Save As'):
anylinkmenu.js
It will allow you to specify the target for individual items in the menucontents.js file:
Code:
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''} //First menu variable. Make sure "anylinkmenu1" is a unique name!
anylinkmenu1.items=[
["Program Fact Sheet", "/amp/pdf/2013-AMPFactSheet.pdf"],
["Service Flow Chart", "/amp/index.html", "_blank"],
["Steps to Becoming a Provider", "/amp/index.html"],
["All FAQ's", "/amp/index.html"],
["Sample Menus", "/amp/index.html"],
["Sitemap", "/amp/index.html"] //no comma following last entry!
]
You can still set the linktarget, like if you want all but one or two to open in a new tab:
Code:
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:'_blank'} //First menu variable. Make sure "anylinkmenu1" is a unique name!
anylinkmenu1.items=[
["Program Fact Sheet", "/amp/pdf/2013-AMPFactSheet.pdf"],
["Service Flow Chart", "/amp/index.html"],
["Steps to Becoming a Provider", "/amp/index.html"],
["All FAQ's", "/amp/index.html", "_self"],
["Sample Menus", "/amp/index.html"],
["Sitemap", "/amp/index.html"] //no comma following last entry!
]
In that scenario, all will open in a new tab, except the All FAQ's page, which will open in the same window.
Bookmarks