开发者

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

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜