Skip to content

Instantly share code, notes, and snippets.

@bjorne
Created November 30, 2011 08:59
Show Gist options
  • Save bjorne/1408470 to your computer and use it in GitHub Desktop.
Save bjorne/1408470 to your computer and use it in GitHub Desktop.
Internet Explorer Gotcha
window.a = function() {
throw new Error("expected");
};
try {
window.a();
} catch (ex) {
alert(ex.message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment