Is it possible to log in the browsers console how long it takes to load the ContentTabItem once the tab image is clicked?
I am needing to log the time because we have recently upgraded from UltraWebTab and are getting complaints that it is slower switching tabs when using the 11.2 WebTabs.
Thanks
jQuery('#startTime').val(+new Date); is being set in function SelectedIndexChangingdHandler(sender, eventArgs) {
function URLLoadedHandler(sender, eventArgs) { endTime = +new Date, delta = endTime - jQuery('#startTime').val(); ; console.log('Tab Change took ' + delta.toString() + "ms"); }