Be compatible with hint-mode by making all clickable interfaces anchor tags
tl;dr: Make <div class="pull-left list-header no-left-label">...</div> into an <a> tag.
In keyboard-focused browser interfaces, such as
- Vimperator
- cVim
- vimFx
- Vimium
- qutebrowser
one can highlight and select links easily without the mouse. Typically, one presses 'f' (follow link) and all the links currently visible get little yellow boxes next to them. Press the keys in the box and you follow the link.
Demo: https://www.youtube.com/watch?v=HKyUQZBZRK8
Links are found by selecting all the 'a' elements on the page. Link hinting typically cannot detect if an arbitrary element has had an onClick event handler added due to browser security features.
To support link hinting, all you need to do is make any clickable element an anchor tag.
Thanks!
