I want to have 1 "+" with x number of slide panels set to display: none; under it . When a user clicks the "+" a panel is revealed. Each time the "+" is clicked, the next panel is revealed, and so on. Each panel will have a "x" that can be clicked to close itself.
I figure I would have to create an array for my collection of DIVs, then with clicks, iterate through each one until I have the desired number of panels revealed, or, I reach the end of the array. I just have no idea how to begin with this. Am I making any sense?