Hi,
I want to remove/refresh the cache in Ajax load .. Here is the method i used for Ajax Load..
var $tabs = $('#tabs').tabs({
tabTemplate: '<li><a href="<%= "#"%>{href}"><%= "#"%>{label}</a> <span class="ui-icon ui-icon-close">Remove Tab</span></li>',
add: function(event, ui) {
switch(perform) {
case 'search':
ActionUrl="<%=request.getContextPath()%>"+"/example/Duty.action";
$(ui.panel).load(ActionUrl,{'perform':'search'});
break;
}
$tabs.tabs('select', '#' + ui.panel.id);
ActionUrl="<%=request.getContextPath()%>"+"/example/Duty.action";
}
});
Thank you..