As I said, I have 3 tabs on the form. Each tab contain different text fields. I want to access input fields of the active tab on the button click which is outside the tab.
The solution, I found is (I think, its same as you suggested)
var contentPanel = $("#tabs").find(".ui-tabs-panel:visible");
var ArrInputObj = contentPanel.find('input');
alert(ArrInputObj .length);
Thanks for helping me in finding solution.