Refresh tab content on click in JQuery UI Tabs

HI Guy’s

TAB1 and TAB2 have some radio button, checkbox and dropdown menu.
When
TAB1 is selected, I have to switch to TAB2 and then back to TAB1 to
refresh
the loaded content.

How to make TAB1 refresh loaded content when click on its tab?

code is something like that

+++++++++++++
Pravin M.

You may try using jquery delegate or bind to send an ajax request to
update the contents when clicking. Something like;

$(document),delegate(“#tab1”, “click”, function(){
$.ajax({ your ajax call here });
});

On 29 oct, 01:50, Pravin M. [email protected]