How is it possible to disable AJAX functionality for a tab or two when using jQuery UI tabs?
So after clicking the user is taken to an URI defined by the href attribute of a link. Right now, the default behaviour is that the content from the the external URI is loaded via AJAX.
Not sure why you need this as it defeats the purpose of a tabbed pane and the user may not be expecting a full window refresh however…
The tabs expose a select event which you can hook into. You could then use some logic (check if the link has a certain css class or if the url is a certain page etc) to decide if to follow the default ajax behaviour of actually follow the link in the browser.