I am using jquery-ui-tabs to allow users to create their own tabs, then ofcourse switch between tabs as they see fit. The content in the widgets are small widgets which are like mini programs in their own right. Users can then choose which widgets they want on any given tab.

This works fine as long as any given widget is only set in 1 tab, however, things start going wrong when any given widget is added to 2 tabs or more. When the widgets are generated, they use the id from the database. For example . If a given widget is added to 2 or more tabs, they end up with 2 divs with the id same id, for example widget_1, which causes problems as you can imagine.

So my question is, what is the best way to solve such a problem?

I wish I knew earlier that they wanted to be able to use the same widget on more than 1 tab. I get the feeling this is almost going to have to be a complete rewrite...

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

does the "div called div1" have "div1" as class or id?

your question sounds like it's an id, and thats all the problem: the id has to be unique

to solve this, work with classes - they can be used multiple times and you should be able to do the exact same things (but thats a bit hard to say without seeing some code).

EDIT: changed my fist link to show the w3c-recommendation. i linked this article before

link|improve this answer
just using the last line of that article If you want your Web pages to validate as XHTML or HTML, then you should have unique IDs on your pages. - Everything works fine without even being validate! I still don't get why people rely so much in recommendation docs... Recommendations exits to follow through, but there are cases here and there that we can't simply follow the recommendations, and let me assure that all still works great... in any browser! – balexandre Oct 13 '11 at 12:45
i agree with you, but in this is not the case where we "can't simply follow the recommendations" - this is easy, and if you can choose to follow the recommendation or to break with it, why should anyone choose to break it... – oezi Oct 13 '11 at 12:56
feedback

It's not a recommended practice to have the same id in the same page, but you should not have problems with it at all, all you need to do in your javascript calls is append the tab it self, for example:

$(".tab-1 #div1")... instead of only $("#div1")...

though, I would always avoid having the same id and "tell" your generator to use div1-random-number and always use the class to get the widget using the currently tab as seen in the code above

Live example on JsBin

link|improve this answer
1  
i wouldn't recommend to use the same id twice, even if browsers accept that. it's still plain wrong and against the definition: w3.org/TR/html401/struct/global.html#h-7.5.2 – oezi Oct 13 '11 at 12:38
W3 is only a recommendation thingy, stop thinking that the hole web world will hang if you don't follow a recommendation! – balexandre Oct 13 '11 at 12:40
1  
Recommendations are there for a reason, stop thinking that everyone uses a modern bling-bling-browser - there are still people using IE6, Netscape, special Screenreader-Browsers and a lot of other crazy/old stuff wich might have a problem with multiple same IDs. (and it's the same work to use an id or a class. so why should anyone break up with the recommendation without having advanages? at best, nothing happens, but you might get a bunch of probolems) – oezi Oct 13 '11 at 12:52
you're funny!!! – balexandre Oct 13 '11 at 12:54
you're not. lets stop this discussion here and let the other users vote for the best answer. – oezi Oct 13 '11 at 12:59
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.