Last active
August 29, 2015 14:01
-
-
Save am4dr/048772fa7cefed4c5699 to your computer and use it in GitHub Desktop.
そのページのタイトルとURLをmarkdownのリンクの書式"[title](url)"で得るためのブックマークレット。execCommand('copy')。
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
| javascript:var e=document.createElement('input');e.type='text';e.value="["+document.title+"]"+"("+document.URL+")";document.body.appendChild(e);e.select();document.execCommand('copy');document.body.removeChild(e);void(0); |
Author
Author
execCommand('copy');でプロンプト無しに。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
最後の
void(0)は確かIEでの何かしら意図的ではない動作を防ぐためにつけた気がする。