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);
});

$.each()isn't used that way... are you sure you didn't mean$(sel).each()instead? – 32bitkid Jan 9 '12 at 17:27.animateon your$('div.upload-progress-bar')selector...? – Zeus Jan 9 '12 at 17:29