[jQuery] Re: Show Function Disappering

2008-11-06 Thread Althalos
Example is right here: http://docs.jquery.com/Effects/show How are you hiding your div? It should (preferably) be done using css display:none; ... and then you have to make sure that what you do doesn't conflict with anything else you might've put on there.. which we can't know because you

[jQuery] Re: Show Function Disappering

2008-11-06 Thread jquerist
Heres my Code: html head titlejQuery/title script src=jquery-1.2.6.js type=text/javascript/script script type=text/javascript $(document).ready(function() { $('p#p1').hide(); $('a#paragraphShow').click(function() { $('p#p1').show(); }); }); /script /head body a href=

[jQuery] Re: Show Function Disappering

2008-11-06 Thread jquerist
Ya it appears for the duration of the page loading, then disappears. Anyone? On Nov 6, 4:14 pm, jquerist [EMAIL PROTECTED] wrote: Heres my Code: html head titlejQuery/title script src=jquery-1.2.6.js type=text/javascript/script script type=text/javascript $(document).ready(function()

[jQuery] Re: Show Function Disappering

2008-11-06 Thread Rik Lomas
This is more a CSS problem, make add this to your CSS: p#p1 { display: none; } That should fix it Rik 2008/11/6 jquerist [EMAIL PROTECTED]: Ya it appears for the duration of the page loading, then disappears. Anyone? On Nov 6, 4:14 pm, jquerist [EMAIL PROTECTED] wrote: Heres my Code: