strpos, td
id class td,
<td class="img"><xsl:value-of select="Image" /></td>
$start = strpos($html, '<td class="img">') + 16;
// we are going to start getting from <td class="img">
$length = strpos($html, '"></td>') - $start;
$src = substr($html, $start, $length);
echo $src;
edit: php, jquery
$(document).ready(function(){
$.ajax({
type: "GET",
url: "yourxml.xml",
dataType: "xml",
success: function(xml) {
}
$(xml).find('addtaginyourdataloop').each(function(){
var $start= var $row = $(this).closest("td").text();
var $text = $start.find(".img").text();
alert($text);
});
});