Hi i am generating 3 tabs using jqxTabs.Here i have situation where during the initial load we will get the first tab selected,and in that tab i have few links.By default the first link should get loaded without a click on it.So for this i have manually loaded immediately after the tabs are created.Like
$('#jqxTabs').jqxTabs({width : 1500, height : 500});
$('#content1').load('./AccountSummary');
the problem is only with the first time creation.Though the scenario does’nt cause any issue so far,i was just curious to know if there is any way that i get the selected tab value for the first time and based on that i can load the page.For the other tabs i was able to load page using
$('#jqxTabs').on('selected',function(event) {
var item = event.args.item;
var title = $('#jqxTabs').jqxTabs('getTitleAt', item);