[jQuery] Re: Hash-aware script?

2009-04-22 Thread Micky Hulse
That worked great Jordon! Thank you!!! Now I just need to figure out how to toggle the hash based on the click handler. :) Have a great day! Cheers, Micky

[jQuery] Re: Hash-aware script?

2009-04-21 Thread Jordon Bedwell
You should add in some checks, but this is how you would check for a hash. if(window.location.hash) { section=window.location.hash; $(section).toggle(); } -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Micky Hulse

[jQuery] Re: Hash-aware script?

2009-04-21 Thread Micky Hulse
Thanks Jordon! I love how easy jQuery makes things!!! Hehe, I appreciate the code example, that should get me headed in the right direction. :) Have a great day, Cheers, m