I truly appreciate your help and I apologize for my ignorance but the code doesnt seem to be working in its current form. Here is what I have :
- $(".dot").each(function(i){
$(this).delay(i+250).animate( {
width: "55px",
height: "55px",
left: "-5px",
top: "-5px"
}, 100, function() {
$(this).animate( {
width: "45px",
height: "45px",
left: "0",
top: "0"
}, 100, function() {
$('.number').fadeIn(100);
});
});
});
also just for my own curiosity since the variable i would initially have a value of 0 would the i*250 work or would the time always come out to zero? Or does i*250 add the 250 rather than multiply?
it was for this reason I also tried by first declaring a value for i as 1 but to no avail. I also tried i+250 but got nothing also.
thank you again you are really helping me out.