I assume you want everything to be toggled onClick, including the main menu that's displayed when the anchor link itself is clicked on? Try the attached .js file which does this. If you want the main menu to still be shown onMouseover, change the part in red below to "mouseenter" instead:
Code:
$target.bind("click", function(e){
Also, would like it to show different colors as they roll over the link and enlarge the font.
Inside the .css file, you might add the code in red below to get the font of the currently active menu link to change color/size:
Code:
.jqpopupmenu li a:hover, .jqpopupmenu li.selected>a{
background: #e0e0e0;
font-size: 16px;
color: red;
}
Bookmarks