Jquery Ajax Tabs Change To "loading..." After Clicking On Them
In the following code all of the tabs initially display their proper text (Home,Reports,Setup,Documentation,Support). When any of the ajax tabs are clicked (Home, Documentation, S
Solution 1:
You can set the spinner
option to false
, or an empty string, like this:
$("#tabs").tabs({ajaxOptions: {cache:false},spinner:false});
You can see the if(o.spinner)
check here, either of these will fail this check, avoiding the replacement (as will other data types, but false
is the clearest intention IMO).
Post a Comment for "Jquery Ajax Tabs Change To "loading..." After Clicking On Them"