DOMの勉強も兼ねて作ってみた。 ページタイトルとURLを取得し、リンク用HTMLソースを作成して表示する。 javascript:(function(){ var link = document.createElement('a'); link.setAttribute('href',location); link.innerHTML=document.title; var tmp = document.createElement('div'); tmp.appendChild(link); var text = document.createTextNode(tmp.innerHTML); prompt('',text.nodeValue); })();