extra comma causing error in IE6 /IE7
May 24, 2008 - 6:40am — cfconcepts
| Project: | Simple chained combobox plugin |
| Version: | 1.0.1 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
Old Code (Line 36):
parameters : { '_id' : $(this).attr('id'), '_name' : $(this).attr('name') },
} , settings);
Fixed Code:
parameters : { '_id' : $(this).attr('id'), '_name' : $(this).attr('name') }
} , settings);
