I hope you can offer some advice on this.
I have used multiple jQuery Tabs on ColdFusion pages in the past, but for the first time, I need to dynamically create multiple tabs based on the name of a supplier to keep them unique.
So instead of "#Tabs", I am trying to achieve "#ABC001" or "#XYZ002" etc.
I think I am getting there in that the tabs appear to initialise, but they just don't work and I suspect it is possibly because of the dynamic variable CF output or in fact what I am trying to do is maybe just not even possible.
The error I am getting is "jQuery UI Tabs: Mismatching fragment identifier" and I think it may be the variable name causing this.
I have attached a screengrab of where I think the issue may sit. Sorry, but I am not sure how to add the code as it seems to chop it off. I have attached an image. Thank you in advance for taking a look.


I'm adding my 2 cents related to how overly complex your code is.
<cfloop><cfoutput>tagsYou have a repeating HTML structure grouped by
name, so use that with<cfoutput>:The rendered HTML contains all of the proper unique HTML
ids and relatedhrefvalues. Add the JavaScript you already have, and the tabs should render and act correctly.