Hi,
So I have the following code:
<script type="text/javascript">
$(document).ready(function() {
$('#ctl00_ContentPlaceHolder1_btnRadioHelp').click(function
() {
$('#ctl00_ContentPlaceHolder1_Panel3').modal();
});
});
As you can probably tell, the server side code is asp.net. There is a
panel with display set to none and a button that I binding the click
event to.
When I click that button, everything works beautifully. But it only
works once. What am I overlooking? What do I need to add to ensure
that the button fires again?
Thanks,
Ron