The flexdropdowncontents.js file is OK, except that the lines are jumbled up. Some lines that need line breaks in them do not have them, others that can't have line breaks do. Here's a working version:
Code:
//1st MENU Contents
var flexmenu1=new ddlistmenu('flexmenu1', 'flexdropdownmenu') //var menuvar=new ddlistmenu('menuid', 'menuclass')
var subul1=flexmenu1.addItem('http://www.fandetimesystems.com/Biometrics.html', 'BIOMETRICS').addSubMenu()
subul1.addItem('http://www.fandetimesystems.com/FacialRec.html', 'FACIAL RECOGNITION')
subul1.addItem('http://www.fandetimesystems.com/FingerPrint.html', 'FINGER PRINT')
subul1.addItem('http://www.fandetimesystems.com/HandRead.html', 'HAND READERS')
//addItem(url, text, optionaltarget)
var subul2=flexmenu1.addItem('http://www.fandetimesystems.com/Software.html', 'SOFTWARE').addSubMenu()
subul2.addItem('http://www.fandetimesystems.com/Cloud.html', 'CLOUD BASED')
subul2.addItem('http://www.fandetimesystems.com/PCBased.html', 'PC BASED')
subul2.addItem('http://www.fandetimesystems.com/PrtSys.html', 'PORTABLE SYSTEMS')
var subul3=flexmenu1.addItem('http://www.fandetimesystems.com/Clocks.html', 'CLOCKS').addSubMenu() //create new 2nd level menu and assign it to new variable
subul3.addItem('http://www.fandetimesystems.com/ClockComupter.html', 'COMPUTERIZED')
subul3.addItem('http://www.fandetimesystems.com/ClockManual.html', 'MANUAL')
subul3.addItem('http://www.fandetimesystems.com/DataTerm.html', 'DATA TERMINALS')//2nd MENU Contents
var flexmenu2=new ddlistmenu('flexmenu2', 'flexdropdownmenu')
flexmenu2.addItem('http://www.fandetimesystems.com/CardPrint.html', 'CARD PRINTERS')
flexmenu2.addItem('http://www.fandetimesystems.com/GuardTour.html', 'GUARD TOUR')
Copy and paste the above to a new file and use it to replace the current flexdropdowncontents.js file you're using.
Bookmarks