Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to get all the image tags ids inside a particular div. How can I get that using JQuery?

share|improve this question

4 Answers

up vote 15 down vote accepted
var arraysOfIds = $('#particularDivId').find('img').map(function(){
                       return this.id;
                   }).get();

// arraysOfIds has now all the id's, access it as arraysOfIds[0], arraysOfIds[1]....  
share|improve this answer
2  
Ahh, cool. I've learned something new with the .map() feature. Though, looking at the documentation, why do you need the .get() call at the end. I just tried your code without it and it worked fine. Newbie wanting to learn. – Jason Evans Jun 11 '10 at 8:19
I'd give this +10 if I could, nice trick. – Raffian Mar 22 at 1:39

Use a child selector. So your saying I want all of the child 'img' elements of div #myDiv

$("#myDiv > img").css("border", "3px double red");

http://api.jquery.com/child-selector/

share|improve this answer

Rough guess, but try:

var imgIds = new Array();

$("div#divID img").each(function(){
    imgIds.push($(this).attr('id'));
});

You haven't given the name of the div, but I've used divId as the id of the div. Simply change that to suite your needs.

share|improve this answer
You should probably use an array, not a string. – icktoofay Jun 11 '10 at 8:07
Hi there. Yeah, made a mistake, just fixed it. Doh!!! Too early for me. – Jason Evans Jun 11 '10 at 8:07
function textOnly() {
            jQuery('#dvContent img').each(function () {
                jQuery(this).css('display', 'none');
            });
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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