Ok i have assign different values to the DIV for example.
1500
Now this div is on 2 sides left and center. Infront of both is a download button clicking which following code is executed,
function downloadIt(file,divName){
var i = parseInt($("#"+divName).text());
var updated = i+1;
//alert('#'+divName+'');
$("#"+divName).html(""+(updated)).hide().fadeIn("fast");
setTimeout(function(){ $("#downloadBar").slideDown("fast") }, 700);
setTimeout('tryToDownload("new.php?fileName='+file+'")', 400);
setTimeout(function(){ $("#downloadBar").slideUp("fast") }, 5000);
}
But still it doesn't updates the DIV's only 1 div on the left side is updated!!