Skip to content

Instantly share code, notes, and snippets.

@stefek99
Last active September 18, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefek99/3245c09869b04ebfe49a to your computer and use it in GitHub Desktop.
Save stefek99/3245c09869b04ebfe49a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<script>
window.onerror = function(e) {
// an attempt to supress errors
};
var some_HTML_string = "<img src='non-existent.jpg'>";
$.parseHTML(some_HTML_string)
$(some_HTML_string) // another attempt
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment