I am using http://jquerytools.org/demos/tabs/ajax-history.html but when I add multiple ul "css-tabs" classes only the first one works, how can you make it work with multiple classes and support loading any clicked links in to "css-panes"?
Might need some more information, maybe some sample code. Right off the bat it sounds like you might have an issue with an id
vs class
property. Often times if you're attempting to select everything with the same id
, you'll only get the first one on the page. You'd wanna use a class
attribute if that's the case.