Increment div
outside the fadeOut
function.
See also this post for what CSS class names can look like, starting with a digit isn't one of them.
I'd consider using a single class name for the divs you want to apply this too rather than explicitly referencing each div.
Edit In that case, I'd create a collection of the divs separate from everything else. Pass that to a function that performs the operation on the first item in that list. In the fadeOut
function, call the same function again, passing the rest of the list. Terminate by not calling the function when there are no more elements. Basically do it recursively.
The same thing could be done iteratively, I just think the recursive version is more intuitive.