Opened 13 years ago
Closed 13 years ago
#5071 closed bug (duplicate)
Form attribute get/set breaks with same named input in form
Reported by: | trmpowell | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.4 |
Component: | unfiled | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Trying to get or set the attribute of a form does not work properly if there is an input in the form with the same name as the attribute trying to be gotten/set.
Example, this works:
$('#testform').attr('action', 'http://www.google.com').attr('target', 'test');
<form id="testform">
<input type="text" name="act" />
</form>
while this doesn't:
$('#testform').attr('action', 'http://www.google.com').attr('target', 'test');
<form id="testform">
<input type="text" name="action" />
</form>
Note: See
TracTickets for help on using
tickets.
Duplicate of #3113.