hello,
i have a html-string from a ajaxloaded source and i would like to get some attributes from an object (image) in this string, before i put the whole html into the document.
since now i've something like:
$.ajax({
url: uri+'?js',
success: function(data) {
var htmlCode = $(data).html();
$('#otherObject').html(data);
}
});
i hope you can help me. and i hope that the solution isn't that simple that i'll get in shame.
thanks a lot!