1

if i select an item from a dropdown-list an ajax-call is fired by jquery - load function. after the ajax call the correct item is selected in ff and chrome, but not in IE. the response from server looks well. the option has the selected - attribute with value "selected".

Thx for help

bacs78
  • 11
  • 2

1 Answers1

0

You don't give a lot of detail, but it sounds like you're suffering from the well documented fact that the change event does not bubble in IE. See this other well-answered question for what you need to know.

jQuery change event on <select> not firing in IE

Community
  • 1
  • 1