How to prevent jquery tab switch to tab 0 when button is clicked on asp.net page

How to prevent jquery tab switch to tab 0 when button is clicked on asp.net page

I have a jquery tab control with 5 tabs.
I also have an asp.net Listview with save, cancel and edit buttons 
This ListView is on Tab 2.
The problem I am having is that when I click a button, for example the save button, the new data gets saved correctly but the tab switches to tab 0. I want it to stay on tab 2. Likewise when I click the edit or cancel buttons, the operation is performed correctly but again Tab 0 becomes active. I tried ptting  OnClientClick ="return false;" in my asp button declaration but then the buttons didn't function ( wouldn't save for example.

My jquery code is
  1.  $(function () {

  2.         $("#tabs-right").tabs();
  3.         $("#btnUpdate").click(function () {
  4.             $('#tabs-right').tabs('option', 'active', 2);
  5.         });
  6.         $("#btnCancel").click(function () {
  7.             $('#tabs-right').tabs('option', 'active', 2);
  8.         });
  9.         $("#btnEdit").click(function () {
  10.             $('#tabs-right').tabs('option', 'active', 2);
  11.         });
  12.     });
My asp markup looks like this
     
  1.  <asp:ListView ID="lvCategory" runat="server" DataKeyNames="id" DataSourceID="SqlDataSourceCategory">

  2.                                     <EditItemTemplate>
  3.                                         <tr style="">
  4.                                             <td>
  5.                                                 <asp:Label ID="Label1" runat="server" Text='<%# Eval("id")  %>'  />
  6.                                             </td>
  7.                                             <td>
  8.                                                 <asp:Label ID="lblName" runat="server" Text='<%# Eval("name")  %>' AssociatedControlID="txtName" />
  9.                                             </td>
  10.                                             <td>
  11.                                                 <asp:TextBox ID="txtName" runat="server" Text='<%# Bind("name")  %>'/>
  12.                                             </td>
  13.                                             <td>
  14.                                                 <asp:ImageButton ID="btnUpdate" runat="server" src="images/save_20.png" CommandName="Update"   />
  15.                                               
  16.                                                 <asp:ImageButton ID="btnCancel" runat="server" src="images/cancel_20.png" CommandName="Cancel"  />

  17.                                             </td>
  18.                                         </tr>
  19.                                     </EditItemTemplate>