I want to fetch the images[] array of an external URL. I was able to retrieve the actual source code of the page using $.ajax, but I don't know how to access the images. Thanks.

link|improve this question

32% accept rate
1  
You should improve your accept rate, how do we know that you accept our answers ? Plus you have to post examples, codes etc, it is too vague. Users will vote down you. – user898741 Dec 16 '11 at 13:06
feedback

3 Answers

up vote 2 down vote accepted

You could do something like

var images = [];
$(pagecode).find('img').each(function(){
   images.push( this.src );
});
link|improve this answer
Amazingly you posted the exact same answer as I wanted to, including all text in the answer and the code, anyways, this is a correct answer – DarkDevine Dec 16 '11 at 13:18
@Torben :) (i swear i didn't steal it :p) – Gaby aka G. Petrioli Dec 16 '11 at 13:44
feedback

You can create a img tag, set src to the actual url of image, then append to a specific place:

$('<img/>').attr('src', 'http://www.google.com/intl/en_com/images/srpr/logo3w.png').appendTo('body')
link|improve this answer
The problem is that i need to find the particular img url inside a big html source code. – Yuval Dec 16 '11 at 13:18
could you give me a example or code examples? – Daniel Lv Dec 16 '11 at 13:21
I don't think this is a correct answer, the author seems to want to read the srcs from HTML, not settings them for single tags – DarkDevine Dec 16 '11 at 13:46
feedback

You can use .load() method. The .load() method, unlike $.get(), allows you to specify a portion of the remote document to be inserted.

$('#result').load('http://www.mypage.com/myimages.htm img');

That will load every image on the page.

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.