i am using jquery library in my project.I have terrible problem with jquery tabs.Solutions is that when i was in third tab,i post back my form,tabs reloaded and goes to first t
I had the same problem, fixed by adding the following to the jquery tabs select event handler:
$("div.ui-tabs-panel").html("");
It effectively clears all existing panels to prevent form stacking.