Hi there can I get code to get a list dropdown of elements in a form by name and also rename them at the same time thanks
+2
A:
jQuery('#myForm select[name=foo]').each(function () {
jQuery(this).attr('name', 'bar')
});
David Dorward
2010-05-06 09:06:31
Thanks that works perfectly
mike
2010-05-06 09:14:05