Hi guys, I am not sure if I can post this here, but i'll do it anyway 😛
Ok, i have an xml file like this for example,
<markers>
<image src="images/ad1.jpg"/>
</markers>
I use this code to get the data
$('image', xml).each(function (i) { $("#src").text($(this).attr('src'));
});
How can i show the actual image not just the text?