I am using JQuery UI tabs. When i create a tab using the "$("#" + target).tabs('add', url, title);" method it opens a tab and calls an ajax form correctly..

Now the problem exists when i open an identical tab containing the identical form. When the form is submitted using the forms plugin, things mess up. I am presuming this is due to multiple areas having the same div id and so the form plugin does not know which to update..

Is there a work around for this at all ??

link|improve this question
feedback

1 Answer

I share your suspicion that this is caused by multiple elements having identical id values (which is invalid html). You can resolve this by modifying the value of the id attribute using jQuery's attr function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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