Right now I have two repeaters: 1 will be shown when the page loads, the other one I want to remain hidden until a link “Add Stuff” has been clicked. When this is clicked I would ideally like to use javascript to make this second repeater visibile.
The problem is that in order for the javascript to act on the second repeater it needs to be present in the page. Simply setting the:
<asp:Repeater Visible="false"....>
will leave the repeater out of the markup entirely.
Is there a way to make this repeater visible when I click my button using javascript?
Thanks!
1 Answer