not able to retrieve the value of textbox present inside a jquery ui dialog

not able to retrieve the value of textbox present inside a jquery ui dialog

I am creating a div dynamically using the code $tabs.tabs('add','#tabID','title'); and loading its content via AJAX [using jquery load method eg. $('#tabID').load( "test.jsp" );]. In the test.jsp im using jquery ui dialog which contains a textbox and submit button. When i open the tab for the first time everythis is working fine; But once I close that tab and reopen the tab to load with test.jsp, i have an error. i.e When i click on the submit button of jquery ui dialog, I am not able to retrieve the value of textbox. How to solve this problem?