Skip to content

Instantly share code, notes, and snippets.

@IQAndreas
Created March 19, 2013 11:30
Show Gist options
  • Save IQAndreas/5195397 to your computer and use it in GitHub Desktop.
Save IQAndreas/5195397 to your computer and use it in GitHub Desktop.
Found this HTML comment in the source of a website. Via https://www.udacity.com/
<!-- Fix IE's mind-blowing idiocy -->
<script type="text/javascript" charset="utf-8">
if (!window.console) {
window.console = {};
}
if (!window.console.log) {
window.console.log = function () {};
}
if (!window.console.error) {
window.console.error = function () {};
}
if (!window.console.warn) {
window.console.warn = function () {};
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment