テキストエリアの選択範囲の行頭にスペースを4つ入れる
var bef=$('textarea').selection();var aft=bef.replace(/^/g,' ');aft=aft.replace(/\n/g,'\n '...
実行するとそのページのリンクが全て新しいタブで開かれるようになる
a=document.getElementsByTagName('a');l=a.length;for(var i=0;i<l;i++){a[i].setAttribute('target','...
ページ内で使われているクラス名を全部表示idも
var all=document.all||document.getElementsByTagName('*');var div=document.createElement('DIV');va...
ページタイトルの載ったtextareaを画面右上に表示 http://firegoby.jp/archives/1292 これをaタグじゃな...
var title=document.title;var loc=location.href;var div=document.createElement('DIV');var txt=docu...
ブラウザの横幅を表示する
(function(){var w=$(window).width();window.alert(w)})();