Open ozzyogkush opened 12 years ago
When you typeahead and select an element that has been found, the corresponding 'selected' attribute is not being added to the element in IE7. I use a selector like $('#SelectBox option[selected=selected]') to find which options are selected so I can send the data via an AJAX call later, and this fails in IE7.
try to use $('#SelectBox option.selected') I didnt use attribute due some ie strange bug that first element on render always selected.
When you typeahead and select an element that has been found, the corresponding 'selected' attribute is not being added to the