vote up 0 vote down star

Hi

when my tabs load up I get some weird error in the jquery UI tabs.

It dies in this part

this.xhr = $.ajax($.extend({}, o.ajaxOptions, {
    		url: url,
    		success: function(r, s) {
    			$(self._sanitizeSelector(a.hash)).html(r);

    			// take care of tab labels
    			self._cleanup();

    			if (o.cache) {
    				$.data(a, 'cache.tabs', true); // if loaded once do not load them again
    			}

    			// callbacks
    			self._trigger('load', null, self._ui(self.anchors[index], self.panels[index]));
    			try {
    				o.ajaxOptions.success(r, s);
    			}
    			catch (e) {}

    			// last, so that load event is fired before show...
    			self.element.dequeue("tabs");
    		}
    	}));

with this error

o.ajaxOptions is null

I am not sure if this is why some of my other plugins are not working(non UI plugins).

flag

70% accept rate
jQuery UI 1.7.1 Tabs worked fine for me (I'm now using 1.7.2). I'd say the problem is in your implementation, not in the jQuery UI code. How about you post your code and we can look at that? – Jason Berry Sep 18 at 7:24

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.