I have some code like this:
<h2 id="a">Header</h2>
<table>
<tr>
<td>test</td>
</tr>
</table>
<h2 id="zzz">Header</h2>
<table>
<tr>
<td>test</td>
</tr>
</table>
<h2 id="123">Header</h2>
<table>
<tr>
<td>test</td>
</tr>
</table>
I want to be able to determine, with jQuery, the index of a given h2, excluding all other elements, so only relating to h2 elements. So for example, if I got the index of the item with id="123" it would return 3, as it's the third h2 in the tree.
I've tried this:
$('#123').index('h2');
But it doesn't seem to work. It still counts the other elements at the same level of the DOM structure in the count.