How Do I Navigate To Hidden Anchors?
I have a hidden element on my page with id select-box:
Solution 2:
Ignoring the fact you are missing the link to your anchor in what you posted, you're right it looks like "display:none" anchors don't work (see: http://jsfiddle.net/odwneeL7/). But you can easily just make an anchor with no content beside what you want to link to, eg:
<labelfor="select-box"><ahref="#select-box-anchor">Select box</a></label><br/>
...content...
<aid="select-box-anchor"></a><selectstyle="display:none;"id="select-box">
See fiddle: http://jsfiddle.net/odwneeL7/1/
Post a Comment for "How Do I Navigate To Hidden Anchors?"