Jquery tab spinner does not stop in IE
I have added spinner for jquery tab widget. It works fi开发者_JAVA技巧ne on firefox, chrome and safari.
Only in IE when I click on the tab spinner starts and continues to spin even when data is loaded.
$("#mainTabContainer").tabs({ selected: tabIndex,
spinner: spinnerImage,
cache: true,
select: fixTabAbort});
Any help appreciated.
Thanks
We did following to solve this issue:
cj("#elementId").tabs( {
......
......
......
load: function(event, ui) {
stopSpinner( );
}
});
function stopSpinner( ) {
$('li.crm-tab-button').each(function(){ $(this).find('span').text(' ');})
}
Hope this helps
精彩评论