According to http://jqueryui.com/demos/tabs, tabs that load content via AJAX will show "Loading..." while the content loads. If you want to customize this message, you can (supposedly) set the spinner
option:
$("#tabs").tabs({ spinner: "Just a sec..."});
However, I'm having these problems:
- Setting the
spinner
option doesn't seem to work - Even when I don't set the
spinner
option, "Loading..." doesn't appear - "Loading..." doesn't appear for me on the "Content via Ajax" demo on http://jqueryui.com/demos/tabs!
Any thoughts?