Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Is it possible to include additional text on menu item (menu.php page) which will be shown only when hovering over specific item?
In the "Javascript on load" event of the Menu page, enter the following code:
$("tr[id^='item']").each(function(i) { var linkText = $(this).text(); $(this).hover(function () { $(this).find('a').html(linkText + ' my new text ' + i); },function () { $(this).find('a').html(linkText); });});