I am using JS to hide and display divs. In order to set the initial stage to be hidden I am using CSS to do display: none...
Now what I want to do is rather than making an entry for each item is simply make one css entry for #hidden and set that display to none, from there I want to have divs with an id of hidden_XXXXX where XXXXX is a specific identifier for the JS to use... can I do this?
Now what I want to do is rather than making an entry for each item is simply make one css entry for #hidden and set that display to none, from there I want to have divs with an id of hidden_XXXXX where XXXXX is a specific identifier for the JS to use... can I do this?