up vote 3 down vote favorite
5
share [g+] share [fb]

I need an ajax animation while the remote page is loaded in tabs.

I am using

$('#tabs2').tabs({ spinner: ''<img src="../../Content/images/Jquery/spinner.gi'' });

Even $('#tabs2').tabs({ spinner: 'Loading..' }); also doesn't works ...

Though the tab functionality is working but the animation is not working ...

I am using JQuery theme roller files. Your help is much appreciated. Many Thanks

link|improve this question

46% accept rate
is this the actual code? what is this: '' – mkoryak Jun 17 '09 at 16:27
feedback

5 Answers

up vote 5 down vote accepted

Sorry problem solved. I Put a <span> tag in the tabs. Found the solution in Jquery support discussions. http://docs.jquery.com/Discussion

e.g.

<li><a href="../URL">**<span>Text to display in Tabs</span></a></li>
<li><a href="tabdiv">**<span>Text to display in Tabs</span></a></li>
link|improve this answer
1  
Why do you need those asterisks? – Nirmal Sep 7 '10 at 5:18
yeah, what's up with the asterisks? – Neo Sep 13 '10 at 2:13
feedback

This first code snippet as posted, looks incorrect. It should be:

$('#tabs2').tabs({ spinner: '<img src="../../Content/images/Jquery/spinner.gif"/>' });

The second snippet should work just fine assuming that "#tabs2" refers to the container tab and not one of the individual tabs.

Please edit your question and post the associated HTML for the tabs.

link|improve this answer
feedback

The spinner option of the jquery.ui tabs is only used when loading remote content with ajax. Are you sure you're using ajax mode and not simply showing and hiding existing content on your page with tabs ?

link|improve this answer
feedback

I couldn't figure out what is the answer, so once again, if somebody couldn't figure out as well.

Not the content of the tab is being replaced during load but the tab title. All you need to do is putting tab title into span tags

before:

<ul >
 <li><a href="link.html" >Users</a></li>
</ul>

after

<ul >
 <li><a href="link.html" ><span>Users</span></a></li>
</ul>

The tab header must be surrounded with span, as you can see Users becomes <span>Users</span>

link|improve this answer
feedback

Adding a around the text of the tab links fixes the problem. Sumanta's solution is correct, but I'm not sure you need the two asterisk symbols that are in there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.