Are you looking for just the initial main menu to be triggered onClick, when the user clicks on the anchor link, or every level within the main menu as well? For the former, that's easy to do. Inside the .js file, just replace:
Code:
$target.bind("mouseenter", function(e){
$flexmenu.css('zIndex', ++flexdropdownmenu.startzindex)
flexdropdownmenu.positionul($, $flexmenu, e, $target)
flexdropdownmenu.showbox($, $flexmenu, e)
})
with:
Code:
$target.bind("click", function(e){
$flexmenu.css('zIndex', ++flexdropdownmenu.startzindex)
flexdropdownmenu.positionul($, $flexmenu, e, $target)
flexdropdownmenu.showbox($, $flexmenu, e)
e.preventDefault()
})
I only want to go to a page when the user gets to the last level.
Why not just set the URL for every one of the other links inside the menu to say "#"?
Bookmarks