[jQuery] Re: Checkbox hide/show

2007-10-25 Thread blg002
Thanks, That works fine, although the check not displaying is an annoyance and I haven't tried to figure that one out. After posting I found this and it works well for me $(document).ready(function(){ $('#content div').hide(); $("#showAll").click(function(){ if ($("#sh

[jQuery] Re: Checkbox hide/show

2007-10-24 Thread Duncan Heal
Hey JS: $(document).ready(function() { $('.detail').hide(); // hide detail div $('#showAll').toggle(function(){ $('.detail').show(); },function(){ $('.detail').hide(); }); } ); HTML: Show All Fields What’s New/Press Release Display Areas bla