My situation -
Within a 4x4 table grid (16 cells total), I'm trying to display up to 7 divs in their own individual cell (whichever div is visible, have it be in its own cell - 1 div per cell).
What I need/My Question -
If divs "Test1", "Test3", "Test6" fade in, then have these divs display on a 3 different cells,..if 6 divs come in, 6 different cells, etc..
Note: The numbers appended after "Test" (Test0, Test1, etc.) are all being auto-generated and is actually 18 digits long (e.g., 123456789012345678), so I will never know the actual number. I was thinking of using the below function to find all the div id's containing "Test", place those results in the an array, and then somehow pull each result and append it to a random cell. But I'm not exactly sure how to go about it... :
$("div[id^='Test']").each(function(n, i) {
var id = this.id;
});
My main question - How can I display currently visible divs on their own cell?
What I have tried -
My work in progress : http://jsfiddle.net/xVDm9/
Edit: I commented out the black reappearing div out of the code as this might have been confusing and did not really make a case.