Hi,
I need to make a script using Jquery that can find all links in a spot
and mark them.
1. Need to find all spots on a page
2. When it finds a spot, I need to find all links in the spot
3. When all links has been found, i then need to store what number the
link is in the markup. In the example underneath the "link number 2"
is number 3 in the markup.
Example mark-up
---------------------------------------------------------------------------
<div class="spot">
<h2>Spot header</h2>
<a href="page.html" title="link 1"><img src="head.jpg" /></a>
<a href="page.html">link number 1</a>
<a href="page.html">link number 2</a>
<a href="page.html">link number 2</a>
</div>
---------------------------------------------------------------------------
Wanted output:
---------------------------------------------------------------------------
<div class="spot">
<h2>Spot header</h2>
<a href="page.html" title="link 1" onclick="senlinknumber(1)"><img
src="head.jpg" /></a>
<a href="page.html" onclick="senlinknumber(2)">link number 1</a>
<a href="page.html" onclick="senlinknumber(3)">link number 2</a>
<a href="page.html" onclick="senlinknumber(4)">link number 2</a>
</div>
---------------------------------------------------------------------------