hide/Show methods
hide/Show methods
Hello
I use use "hide and show" to show and hide a ul.
First when the document is loaded.
And when i click on link.
I want to let the ul showed ou hidden when the page is reloaded.
Is it possible :
My code :
- $(function() {
-
-
-
- $("ul li").hide();
-
- $("link").click(function() {
-
- $("ul li").toggle("normal");
-
-
- });
-
- });