Worked perfect! Thanks!
Main Topics
Browse All TopicsI have a <fieldset> that contains about 40 inputs. I have a function that uses jQuery to clone the fieldset, then tries to change the IDs, names, and values of the inputs inside the cloned fieldset (so I don't end up with duplicates).
This works fine in Firefox with jQuery 1.2.6 (and also works with 1.3.1). In IE8, it works with jQuery 1.2.6, but the new CSS engine in 1.3.1 (Sizzle) doesn't like my selectors. Basically, my code looks like:
<fieldset id='myClonedFieldset>
<input id='textboxWithOriginalID'
</fieldset>
<fieldset id='originalFieldset>
<input id='textboxWithOriginalID'
</fieldset>
x = jQuery("#myClonedFieldset #textboxWithOriginalID"); // <-- PROBLEM
x.attr("id","textboxWithNe
... and other attributes get changed ...
It seems like the new Sizzle engine in jQuery 1.3.1 has trouble in IE8 when you have duplicate IDs. So does anyone know a better way to do this selection?
I know I can just loop through all the fieldset's inputs using the :input selector and then check and change IDs that way, but I'd rather figure out if I'm doing something wrong with that selector. Thanks!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: TheFootPosted on 2009-10-16 at 01:38:17ID: 25587753
Use the .find() method to find descendant elements:
).find('#t extboxWith OriginalID ')
jQuery('#myClonedFieldset'
TheFoot