Created
July 10, 2013 00:37
-
-
Save yuya-matsushima/5962594 to your computer and use it in GitHub Desktop.
TitleとURLを取得し,それぞれ使いやすい形式でalertする
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 url = document.location.href;var title = document.title;var tag = '<a href="' + url + '" target="_blank">' + title + '</a>';var titleUrl = title + " : " + url;var titleUrlTag = title + ' : <a href="' + url + '" target="_blank">' + url + '</a>';var mdUrl = '[' + title + '](' + url +')';alert(tag + "\n\n" + titleUrl + "\n\n" + titleUrlTag + "\n\n" + mdUrl); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment