Archive for the 'jQuery' Category
clickMenu update -> 0.1.2
Another update for the jQuery plugin. It’s got a LOT better (and if not, than at least faster!).
Please take a look at the demo.
Files: (new version here)
jquery.clickmenu.js (13kb)
jquery.clickmenu.pack.js (5kb)
clickmenu.css (2kb - it won’t work without this)
Example:
<script type="text/javascript">
$(document).ready(function()
{
$.fn.clickMenu.setDefaults({arrowSrc:’arrow_right.gif’, onClick: function(){/*do something*/}});
$(’selector1′).clickMenu(); /* use default values */
[…]
[ Back to top ]
clickMenu update -> 0.1.1
Here’s a little update for the plugin. Thanks for pointing out some problems.
Demo
Files: (new version here)
clickmenu.js (8kb)
clickmenu.css (2kb - it won’t work without this)
Changelog:
change: the width of the submenus is no longer fixed, the elements can use as much space as they need (fix for overflowing list elements)
change: the submenu-arrow is now an img, not […]
[ Back to top ]
jQuery clickMenu plugin
Since there was no click-type-menu (application-like) plugin for jquery, here is mine:
It makes an unordered list into a menu, you have to click on to display. It supports unlimited submenus (only in theory) and has nifty shadows.
I took inspiration from here and here and for the shadows here, here and here. Thanks!
Here’s the demo! (which […]
[ Back to top ]