Using jQuery tabs, accordion or any other widget inside an update panel is always being tricky. Tabs, Accordion and any other jQuery widget loses the style every time partial post back occurs which is quite annoying. People tried different approach to overcome this issue. Here is the javascript code to set jQuery Tab –
Now it works fine with normal html pages and there is nothing wrong with that. I found another annoying thing is every time a page post back or partial post back occurs the tab loses the selected tab index and it goes to the first one. So In the aspx page I have created an hidden item and set the value for the selected tab index and set it back after page post back occurs. It works fine so far. Here is the modified code –
Bear in mind you can use $(document).ready(function(){ //your code }); or the short version $(function(){ //your code });. And the hidden item like this –
Now it works fine and when updating record, it come back to the active tab, like the image below –
So far so good, no I did not implement any updatePanel yet and it works fine. I have included an updatePanel and now it losing tab style every time partial post back happen for record update. I had success with couple of approaches, one is setting jQuery tab after a partial postback occurs. Like this –
Can you sendme The code? No found in my site with masterpages and update panels