1. Request to execute error directly under ie9
2.$.ajax({
url: apiServiceBaseUri + 'token',
type: "post",
data: data,
dataType: 'json',
success: function (response) {
loginSucc(response);
},
error: function(response) {
var res = JSON.parse(response.responseText);
$(".hint").show().html(res.error_description);
}
});
Look under the console, has the request been sent? And what are the error messages? Is the url entered correctly?