<select name="search[quick_dates]" id="search_quick_dates">
...
</select>
and jQuery:
f.find('select[name=search[quick_dates]]').bind('change', { form: f }, function(e){
...
}
throws an error:
Uncaught Error: Syntax error, unrecognized expression: select[name=search[quick_dates]]
Can I update my jQuery instead of changing the attribute name?