开发者

Jquery tab spinner does not stop in IE

开发者 https://www.devze.com 2023-01-07 19:24 出处:网络
I have added spinner for jquery tab widget. It works fi开发者_JAVA技巧ne on firefox, chrome and safari.

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

0

精彩评论

暂无评论...
验证码 换一张
取 消