-
-
Save benqy/ae1683b07640d0b214fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>console track</title> | |
</head> | |
<body> | |
console status: <span id="stat"></span> | |
<script> | |
function isConsoleOpen() { | |
var el = document.createElement('div'); | |
var ret = false; | |
el.__defineGetter__('id', function() {ret = true}); | |
console.log(el); | |
console.clear(); | |
return ret; | |
} | |
// test | |
setInterval(function() { | |
stat.innerHTML = isConsoleOpen() ? 'open' : 'closed'; | |
}, 1000); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment