This is bad and [redacted] should feel bad:
```
<a aria-label="I need help. (Opens a pop up)." tabindex="0" role="link">
I need help
</a>
```
For those new to all the risks, here is a less broken approach:
```
<button aria-haspopup="dialog">
I need help
</button>
```