Hi
I need to create a large grid with approx. 5,000 cells (10x10px). each cell needs its own ID, has to be clickable. cells that have been clicked need to be shaded differently. I also have to have a background image which needs to remain visible.
This is wrecking my head as the HTML overhead creating 5000 div tags is simply too much. We thought of dynamically creating the div tags using JavaScript on the client side but don't know how to incorporate the list of clicked (differently shaded) cells.
Is there anything we haven't thought of?
Markus