I don't see anything that is immediately obvious... Make sure you don't have duplicate id's.
On Dec 10, 12:05 pm, Ron <[EMAIL PROTECTED]> wrote: > 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