Modify ↓
Ticket #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: | ||
| Blocking: | Blocked by: |
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>
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Duplicate of #3113.