Created
November 23, 2016 16:05
-
-
Save VadimBrodsky/468758081d415722b0fb3a8783b07058 to your computer and use it in GitHub Desktop.
Bookmarklets
This file contains 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 lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<style type="text/css" media="all"> | |
body { font-family: monospace; } | |
</style> | |
<title>Bookmarlets</title> | |
</head> | |
<body> | |
<h1>Bookmarklets</h1> | |
<h2>Vanilla</h2> | |
<ul> | |
<li> | |
<a href="javascript: (function(){ console.log('hello'); })();">Hello</a> | |
</li> | |
</ul> | |
<h2>jQuery</h2> | |
<ul> | |
<li> | |
<a href="javascript: (function(){ $('body').keyup(function(e) { if(e.keyCode === 9) { console.log(document.activeElement); } }); })();">Log Focused Elements</a> | |
</li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment