Bookmarklet to display all accesskey-enabled links on a page. To install, visit http://bl.ocks.org/dergachev/5659784
Last active
December 17, 2015 19:19
-
-
Save dergachev/5659784 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
a[accesskey]:after, | |
button[accesskey]:after, | |
input[accesskey]:after, | |
label[accesskey]:after, | |
legend[accesskey]:after, | |
textarea[accesskey]:after { | |
margin-left: 0.3em; | |
color: Plum; | |
content: "[" attr(accesskey) "]"; | |
} |
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
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.2/jquery.min.js" ></script> | |
<script src="http://dergachev.github.io/markleteer/markleteer.js"></script> | |
<p>The following bookmarklet are available:</p> | |
<textarea class="bookmarklet" title="Show AccessKeys"> | |
var script = document.createElement('script'); | |
script.src = 'https://gist.github.com/dergachev/5769111/raw/40fbc029fba48c4a4bd48bcba0a9db172d7c94d9/drupal-grant-all-perms.bookmarklet.js'; | |
script.type = 'text/javascript'; | |
document.body.appendChild(script); | |
</textarea> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment