Resulta que tengo un menú vertical que se despliega con algo de jQuery, montado con esta estructura:
Código HTML:
Ver original
Y con el siguiente js:
Código Javascript:
Ver original
<script type="text/javascript" > // this tells jquery to run the function below once the DOM is ready $(document).ready(function() { // choose text for the show/hide link - can contain HTML (e.g. an image) var showText='<img src="images/mas.png" width="16" height="16" alt="+" />'; var hideText='<img src="images/menos.png" width="16" height="16" alt="-" />'; // initialise the visibility check var is_visible = false; // append show/hide links to the element directly preceding the element with a class of "toggle" $('.toggle').prev().append('<a href="#" class="toggleLink">'+showText+'</a>'); // hide all of the elements with a class of 'toggle' $('.toggle').hide(); // capture clicks on the toggle links $('a.toggleLink').click(function() { // switch visibility is_visible = !is_visible; // change the link depending on whether the element is shown or hidden $(this).html( (!is_visible) ? showText : hideText); // toggle the display - uncomment the next line for a basic "accordion" style //$('.toggle').hide();$('a.toggleLink').html(showText); $(this).parent().next('.toggle').slideToggle('slow'); return false; }); }); </script>
La pregunta del millon es: ¿ Como puedo insertarle un Cookie, para mantener el menu abierto/cerrado, segun lo disponga el usuario?
Poca información encontré sobre este tema, y lo que encontré, no lo termine de entender... agradezco ayuda!
Saludoss!