Skip to content

Instantly share code, notes, and snippets.

@yuya-matsushima
Created July 10, 2013 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuya-matsushima/5962594 to your computer and use it in GitHub Desktop.
Save yuya-matsushima/5962594 to your computer and use it in GitHub Desktop.
TitleとURLを取得し,それぞれ使いやすい形式でalertする
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