>  This code:
>  <script type="text/javascript">
>  <!-- alert(location.hash); //-->
>  </script>

Thanks Andy Matthews

This was the key and I got it working. Was were using a jQuery
expand/collapse function on a page that displayed FAQs. Initially it showed
only the questions and expanded out the answer on click. Wanted to be able
to create links that anchored to a specific question but it's kind of
useless when the answer doesn't show. 

Got the function below out of it. Now, if an anchor exists it opens expanded
and positions to the anchor. If no anchor, it shows the unopened question
list.

        <script type="text/javascript">
          function anchorSet() {
                if(location.hash !='') {
                         $j('div.answer').css('display', 'block');
                }
          }
        </script>

Appreciate the help. Just what I needed.


Robert B. Harrison
Director of Interactive Services
Austin & Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be &.

Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged

 

__________ Information from ESET Smart Security, version of virus signature
database 5419 (20100902) __________

The message was checked by ESET Smart Security.

http://www.eset.com
 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336797
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to