I\'m working on a project that makes heavy use of jQuery tabs and Ajax. Loading data into the tabs is simplicity itself, but the data in the tabs needs to be filtered by a s
The following will write out the href's to the console.
Demo that alerts the ajax tab href's here
$('#tabs a').each(function() { var href = $.data(this, 'href.tabs'); console.log(href); })