Opened 13 years ago
Closed 13 years ago
#6008 closed bug (invalid)
Multiple Selector (“selector1, selector2, selectorN”) error
Reported by: | niceguyblue | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4.2 |
Component: | unfiled | Version: | 1.3.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$("#form-part4,#form-part5,#form-part6,#form-part7,#form-part8,#form-part9,#form-part10,#form-part11,#form-part12").submit(function(){ alert(this.id) });
here each id is a individual form but for #form-part10,#form-part11,#form-part12 is taking them together.
Attachments (2)
Change History (3)
Changed 13 years ago by
Changed 13 years ago by
Attachment: | questionair.php added |
---|
comment:1 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
That's because you forgot to close the form for form-part10 after the table - it continues on and encompasses the other forms as well.