Opened 9 years ago
Closed 9 years ago
#14286 closed bug (notabug)
Compound Radio Button Group Name Changed Event Issue
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.9.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The changed event not attach to a radio button group properly using this approach. In 1.7.1 or 1.9.1 it does work properly in 1.7.2 please see this working example that can be broken by changing the JQuery version. http://jsfiddle.net/zn7q2/2/
$(document).ready(function () { $("input[name=DateSearchOptions.Test]:radio").change(function() {alert('Changed');})
});
Note: See
TracTickets for help on using
tickets.
Attribute selector values that are not CSS identifiers should be quoted. When in doubt, quote the value:
http://jsfiddle.net/zn7q2/5/