I have a anchor inside a list item
<li>
<a href="page"></a>
<span>description</span>
<span>count</span>
</li>
Using javascript, whenever the list item is clicked, the window opens the anchor's href.
I want to let the browser know that when it middle clicks it can treat the list item the same as the anchor, and open in a new tab.
I've looked around and seen that most people think this cannot be done, but I think my situation could be different. One way of looking at it would be not to explicitly tell the browser to open a new tab, rather tell the browser to do what is does when middle click is used.
What do you think?
EDIT: Updated html for a more accurate description. The anchor is not the only element in the list