This was working the first time I tried it, would re-use the same tab as target if it exists and create if it does not
<a href="www.example.com/help/section3" target="helpTab" class="helpButton">Help</a>
Later when I tried the link I noticed it was creating new tabs over and over if i clicked it multiple times, and not re-useing that tab it already made.
so I tried using the java window.open:
<a onclick="window.open('http://example.com/help/#section1', 'helpTab'); return false" class="helpButton">Help</a>
and still it keeps opening in new tabs over and over again.
what would cause it to stop working or what am I doing wrong?