working in popup extension with crossrider and it's working fine in FF and GC, but in IE it passes this block of code without execution (tried to but alert messages before and after and all fired)
...
appAPI.request.get({ url: WebServiceUrl + encodeURIComponent(searchWord),
onSuccess: function(entryString) {
var entry = JSON.parse(entryString);
if(entry.SearchResults == "NoResult")
{
EmptySearch();
def.innerHTML = noResultMessage;
}
else
{
DisplayData(searchWord.toString(), entry);
}
},
onFailure: function(httpCode) {
EmptySearch();
def.innerHTML = ConnectionErrorMessage;
},
contentType: 'application/json'
});
for more details : working in Win 7 , IE 11