I can't get Ext.get to work in IE. Works great in FF, Chrome and even Safari.
My HTML looks like this:
<select id="products" onchange="getReleases()">
<option value="select">Select</option>
</select>
The Ext call is this:
...
success: function(response) {
alert("response.responseText: " + response.responseText);
Ext.get("products").update(response.responseText);
}
I see results in my alert function. What am I missing?