Invent Partners Concertina Menu

This is similar to the jQuery Accordion menu, but improves on it by allowing multiple sections to be open at once and remembering state when changing pages etc via a cookie. Invent Partners Concertina Menu

Read More

jQuery Accordion

This jQuery menu is great for vertical menus, but its limitation is that it won’t remember state when changing pages. jQuery Accordion In your header <!–JQuery Accordion menu start –> <link href=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css” rel=”stylesheet” type=”text/css”/> <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js”></script> <script src=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js”></script> <script> $(document).ready(function() { $(“#accordion”).accordion( {collapsible: true, active: false} ); }); </script> <!–JQuery Accordion menu end –> In […]

Read More