I have this in this var: "ver" Here i have few lines like this one:
<div class="link" id="1"><a ...>Anchor</a></div>
<div class="link" id="2"><a ...>Anchor 2</a></div>
I search a code in jquery that turn the above code into:
<div class="link" id="1"><a ...><img src="...?anchor=Anchor" /></a></div>
<div class="link" id="1"><a ...><img src="...?anchor=Anchor 2" /></a></div>
What i expect from the code: Find each Anchor - Get it - Generate an image that display this anchor. PS: I have the function for "Image Generating".
SOLVED:
$(".link").each(function(){
anchor = $(this).find('a').text();
$(this).find('a').html('<img src="generateLink.php?nr='+encodeURIComponent(anchor)+'" width="39" height="12"/>');
});
id="1", hope it's a typo. – roXon Nov 7 '12 at 21:55