jquery-accessible-hide-show-aria icon indicating copy to clipboard operation
jquery-accessible-hide-show-aria copied to clipboard

Open with anchor on the same page doesn't work (feature request)

Open MacKP opened this issue 7 years ago • 0 comments

I try to use this for additional Information on the same page (with anchors) like:

<a class="xyz" href="#box-download">Downloads</a>

and then the box itselve:

<div id="box-download-wrapper" class="">
      <h5 class="js-expandmore">Downloads</h5>
      <div class="js-to_expand">
        <div id="box-download" class="expand-inner">
          <ul>
            <li><a href="" class="">Download</a></li>
            ...
          </ul>
      </div>
    </div>
    </div>

When i open this in a new window with http://domain.org/page.html#box-download everything is fine. Sadly it doesn't work when i just click on the link when i am on the same page. It would be usefull, when there is an onclick handler for something like that. regards

MacKP avatar May 16 '17 11:05 MacKP