up vote 23 down vote favorite
13
share [g+] share [fb]

I have an HTML string from a Ajax loaded source. I would like to get some attributes from an object (image) in this string, before I put the HTML into the document.

I've got something like:

$.ajax({  
        url: uri+'?js',  
        success: function(data) { 
            var htmlCode = $(data).html();  

            $('#otherObject').html(data);
        }  
    });

How can I get attributes (the src for example) from this HTML string?

link|improve this question
feedback

3 Answers

up vote 31 down vote accepted

I'm not a 100% sure, but won't

$(data)

produce a jquery object with a DOM for that data, not connected anywhere? Or if it's already parsed as a DOM, you could just go $("#myImg", data), or whatever selector suits your needs.

EDIT
Rereading your question it appears your 'data' is already a DOM, which means you could just go (assuming there's only an img in your DOM, otherwise you'll need a more precise selector)

$("img", data).attr ("src")

if you want to access the src-attribute. If your data is just text, it would probably work to do

$("img", $(data)).attr ("src")
link|improve this answer
uuh, thanks for your answer! it's the solution :) i didn't see it. i wish you a good first april - and now i'll get in shame ;) – MarvinS Apr 1 '09 at 9:13
mhm, i've to regreat my comment. your example doens't work for ie (tested in version 7). i used "$(data)" - "data" - "$(data).html()" - nothing works. any suggestions? – MarvinS Apr 1 '09 at 10:06
$("img", $('<div><img src="example.com/test.jpg"; /></div>')) worked in FF (haven't got IE7). Having just the IMG tag enclosed, or enclosed in just a body did NOT work, so perhaps it translates to a single entity? Did you try $(data).attr () directly? – roe Apr 1 '09 at 14:52
i tried $(data).attr() but this doesn't work either. i think it doesn't work in general with ie 7. i've to look for a workaround for exmaple to put the code into a hidden div, read the attribute and then show the code official in the document. – MarvinS Apr 3 '09 at 14:48
@Roe really thanks for your code... It was about 2 hours working on this and now i found the way (your code)... thanks again – Dr TJ Jul 5 '11 at 0:22
show 1 more comment
feedback

MarvinS.-

Try:

$.ajax({  
        url: uri+'?js',  
        success: function(data) {  
                var imgAttr = $("img", data).attr('src'); 
                var htmlCode = $(data).html();
                $('#imgSrc').html(imgAttr);
                $('#fullHtmlOutput').html(htmlCode);
        }  
    });

This should load the whole html block from data into #fullHtmlOutput and the src of the image into #imgSrc.

link|improve this answer
feedback

just add container element befor your img element just to be sure that your intersted element not the first one, tested in ie,ff

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.