I want to create multiple divs. The id of the divs should be decreasing, but not immediately; Like not id 5,4,3,2,1. I would like to create 10 divs with id 10 then 10 divs with id 9 and so on. So it shouldn't decrease by one immediately. Ultimately I'd like 100 divs.
The whole point is that I want to create a coordinate system. So 10 divs should be 10,1 10,2 10,3 10,4... And then when it reaches 10,10 I want it to create 9,1 9,2 9,3...