jquery accordion not re-initiating after an asp.Net postback
I'm firing up a jquery accordion with: $(document).ready(function(){ $('#accordion').accordion(); }); Problem is this is an .asp.NET application and if the page fires a postback is destroys the accordion. How do I re-initiate the accordion upon postback? Sorry I'm not an expert on asp.NET, and also sorry I can't give you a link to the example, this is because it's a password protected application. Thanks. Aristos You need to re-initlaize the accordion after the post back with the UpdatePanel functions as: <script type="text/javascript"> $(document).ready(function(){ var prm = Sys.WebForms