Skip to content

Instantly share code, notes, and snippets.

@VadimBrodsky
Created November 23, 2016 16:05
Show Gist options
  • Save VadimBrodsky/468758081d415722b0fb3a8783b07058 to your computer and use it in GitHub Desktop.
Save VadimBrodsky/468758081d415722b0fb3a8783b07058 to your computer and use it in GitHub Desktop.
Bookmarklets
<!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