Hi ,
I have a tab strip with five "li" tags.Two tabs contains grids in it.The last tab which is also having the grid is not loading as it is not hitting the "onTabSelect" function.
All other tabs are hitting this function but last one does not.This is happening only in Microsoft Edge Browser.
function onTabSelect(e) {
$("#load").text("Loading ...");
uncheckedSelectedTab();
if (e.item.innerText == "ABC") {
Method1();
} //Added for 105423 - end
else if (e.item.innerText == "DEF") {
Method2();
}
else if (e.item.innerText == "PQR") {
Method3();
}
.....
}
Please help.
Regards,
Sandhya.