I have encountered an issue with a piece of code that functions correctly in Chrome and FF, but not in ie11. Interestingly enough, when I tested it in ie8, it worked perfectly fine. Has anyone else experienced similar problems with blockUI on ie11?
The specific versions I am using are jQuery 1.8.3 and Bootstrap 3.1.1 I am receiving the error: "Object doesn't support property or method 'BlockUI'"
function onLinkedInAuth() {
IN.API.Profile("me").result(displayProfiles);
}
function displayProfiles(profiles) {
member = profiles.values[0];
$.ajax({
url: "http://indigopages.net/main/liauth/" + member.id ,
type: 'POST',
beforeSend: function () {
$.blockUI();
},
complete: function () {
$.unblockUI();
location.reload();
}
});
}