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

Hello following problem, i need the id attribute string for each div in a loop how i can make this ?

<div id="3r23r32_ProgressBar" class="upload-progress-bar"></div>
<div id="gfdgfdgfd_ProgressBar" class="upload-progress-bar"></div>

Here is my sample jquery code which does nothing -.-

$.each("div.upload-progress-bar", function (index,value) {

    alert(index);

    $('#' + value + 'ProgressBar').animate({
        'width': 10 + '%'
    }, 250).animate({
        'width': 25 + '%'
    }, 250).animate({
        'width': 65 + '%'
    }, 250).animate({
        'width': 95 + '%'
    }, 250).animate({
        'width': 100 + '%'
    }, 250);
});
share|improve this question
3  
$.each() isn't used that way... are you sure you didn't mean $(sel).each() instead? – 32bitkid Jan 9 '12 at 17:27
@32bitkid- $.each() can be used that way ;). – Matthew Patrick Cashatt Jan 9 '12 at 17:28
1  
why not just call .animate on your $('div.upload-progress-bar') selector...? – Zeus Jan 9 '12 at 17:29
@MatthewPatrickCashatt: To iterate the characters in a string? I suppose it may work in some browsers, but it won't do what OP is trying to do. – squint Jan 9 '12 at 17:31

5 Answers

up vote 1 down vote accepted

valuetry this

$("div.upload-progress-bar").each(function (index,elem) {

    var value = $(elem).attr("id"); // try elem.id, i guess that would work too

    $('#' + value).animate({ // you must remove ProgressBar it is included in the value variable
        'width': 10 + '%'
    }, 250).animate({
        'width': 25 + '%'
    }, 250).animate({
        'width': 65 + '%'
    }, 250).animate({
        'width': 95 + '%'
    }, 250).animate({
        'width': 100 + '%'
    }, 250);
});
share|improve this answer
1  
jquery objects have no id attribute. – tobyodavies Jan 9 '12 at 17:34
ops my bad i did that mistake in hurry.. – dku.rajkumar Jan 9 '12 at 17:35
no elem.id does not work – Sascha Heim Jan 9 '12 at 17:41
yeah even i have never seen thats why i have written in comment. – dku.rajkumar Jan 9 '12 at 17:43
2  
@MatthewPatrickCashatt: If you think this is the same answer, then you don't know the difference between $(string).each() and $.each(string). – squint Jan 9 '12 at 17:51
show 2 more comments

In the callback function, this refers to each of the elements you are looping trough, so you don't need the ID at all to animate the element. Just call $(this).animate(

But in order to iterate trough the div elements, you have to use $("div.upload-progress-bar").each(function(

share|improve this answer
+1 missed the forest for the trees on this one, good call. – jondavidjohn Jan 9 '12 at 17:31
I agree that this is great, but the OP asked about how to get an id on each element. What if he still needs to know that information? – Matthew Patrick Cashatt Jan 9 '12 at 17:43
@MatthewPatrickCashatt see the XY problem. OP makes unnecessary jQuery calls in the loop. Of course, if he really does need the id, he will find in in the other answers ;) – Darhazer Jan 9 '12 at 17:45
+1 This is definitely an XY problem. Good job seeing past it. – squint Jan 9 '12 at 17:55
this.id

will get you the id attribute's text of the current element.

Example of proper .each()...

$("div.upload-progress-bar").each(function (index,value) {
    alert(this.id);
});

See Darhazer's Answer for an answer that will probably help your use case.

share|improve this answer
i have the divs forgotten please review my question thanks :) – Sascha Heim Jan 9 '12 at 17:27
@SaschaHeim I did, my answer will do what you want. – jondavidjohn Jan 9 '12 at 17:28
1  
SaschaHeim is right -- this will do what you want. @Darhazer's answer is really what you want to do, rather than reconstructing the selector string. In both cases, notice the presence of that keyword this. It's a critical concept in JavaScript, regardless of whether you're using a library like jQuery or not. – maxedison Jan 9 '12 at 17:31

You want $(...).each not $.each

It also doesn't look to me like you actually need the id at all - use this

$("div.upload-progress-bar").each(function (index,value) {
    //use `this` and `this.id` if you _really_ need the id
    $(this).animate(
        //...
      )
 });
share|improve this answer

Try this:

$("div.upload-progress-bar").each(function (index,value) {

    alert($(this).attr("id"));

    $('#' + value + 'ProgressBar').animate({
        'width': 10 + '%'
    }, 250).animate({
        'width': 25 + '%'
    }, 250).animate({
        'width': 65 + '%'
    }, 250).animate({
        'width': 95 + '%'
    }, 250).animate({
        'width': 100 + '%'
    }, 250);
});
share|improve this answer
2  
completely unnecessary use of jQuery here... this.id is completely adequate for the job. – jondavidjohn Jan 9 '12 at 17:28
yep, this is what happens when your introduction to JS is actually through jQuery. Not a bad thing -- it's how I learned. But at a certain point you need to start learning pure JS. – maxedison Jan 9 '12 at 17:32
2  
-1 You're making the same mistake OP is. Doing $.each("div.upload-progress-bar", iterates the characters in the string (in browsers that will allow it). It doesn't do DOM selection. – squint Jan 9 '12 at 17:34
@jondavidjohn- Wrong. $(this) constructs a jQuery object so that he can call jQuery methods against it whereas "this" points to a DOM object. "this" would be bad practice when using jQuery. – Matthew Patrick Cashatt Jan 9 '12 at 17:34
1  
@amnotiam-Oh jeez--I see what you are saying now. I just copied the OP's code over. Yes, you are right, that is a string and not a selector. My bad--I was more focused on the id part. – Matthew Patrick Cashatt Jan 9 '12 at 17:52
show 8 more comments

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.