Different JSP with different JQuery UI forms, open previous/current dialog associated or not associated.

Different JSP with different JQuery UI forms, open previous/current dialog associated or not associated.

Hi all, 

I´m coding a JQuery form using buttons, radiobuttons and tables.

As you can see in the attached image, there are three horizontal buttons (Button1, Button2 & Button3). If you clicks on some button, the table-div will update to show the associated table. Ok, this task works well, but, happens a strange thing:

- The first time, by default, appears the table related with "Button1". If you select some button in the Column3 (pencil is to modify the row and trash is to delete these row), will appear a modal dialog and you can modify/delete these row.

- After the previous step, the trouble appears when you click on "Button2" & click on some Column3 button. The app alternates the modification/deletion dialogs associated with the "Button1" table. 

1) I tried to see if there are a problem with cache mode. NO.
2) I tried to delete the DIV associated with the table using:

$('div#myDivTable').html('');
$('div#myDivTable').css("display", "none");
$('div#myDivTable').load("pages/myJSP/page.jsp",function() {
            $('div#myDivTable').fadeIn('fast');});  


Thanks a lot!