Internet Explorer 8のベータがリリースされたのでとりあえず覗いてみた。 といっても、未だにIE7さえ入れてない環境なのでIE8もちゃんと入れる気は端からない。DLLだけ抜き出して印刷機能の変更点を探ってみる。 IE7と同じく、印刷プレビューに関するスクリプ... 続きを読む
javascript はじめにIE8 には Selectors API という新しい仕様が実装されました。ということで、今後 DOM 操作 API の主流になるであろう Selectors API についてまとめておきます。 Selectors API が使えるブラウザ2008 年 3 月 6 日現在の一覧WebKit Nightly ... 続きを読む
今日からVisual Studio 2008 Express Editionのダウンロードが開始されたので、早速Visual Web Developerをインストール→JavaScriptデバッガの動きを確認してみた。ひとまずインストール2005はisoイメージしかなかったけど、オンラインインストールが基本にな... 続きを読む
JavaScript, IE, DebugIEでJSのエラーになったときに立ち上がるデバッガって大体の人が使いこなせてないのではないでしょうか?ちなみに僕もそうだったのですが、ふと思い立って調べてみました。 追記 (2008-01-10T14:24:30+09:00)はてブのコメントで、 MS Offi... 続きを読む
Private foo As Object Public Sub Set_Foo(ByRef aFoo As Object) foo = aFoo End Sub Public Function Get_Foo() As Object Return foo End Function とかでもまぁ別にいいんだけども、Get_, Set_とかダサいよねって事で、色々調べてたら、 Private fooObj As... 続きを読む
This is a Flickr badge showing public photos from cwilso. Make your own badge here. Dean Edwards asked me in a comment on the IEBlog what I personally thought of the ES4 proposal. ('You say that "Microsoft" think that the web is best served b... 続きを読む
A cursory look suggests that it is an over-engineered system. It almost looks like it wants to be a complete solutions platform. THey already have that, it is called Java - why reinvent the wheel? Does the internet need that level of scripti... 続きを読む
The web has become the primary global computing platform tying together hundreds of millions of sites. In the eight years since the release of the ECMAScript Language Specification 3rd Edition (ES3), ECMAScript (commonly known as JavaScript™... 続きを読む
とにかく関数呼び出しが最小になるようにすればいい cmp関数を渡さないでtoStringの呼び出し回数を減らす → IEでのみ取れる戦略 cmp関数の呼び出し回数を減らす → 自前でソートアルゴリズムを書く。 IEに特化したソートの高速化 比較関数を渡さないソート→to... 続きを読む
Scripting.Dictionaryを使って配列のunique化 WSH, JScript, JavaScript | 02:48 | と言うのを思いついた。 function unique(arr) { var dic = new ActiveXObject("Scripting.Dictionary"); for (var i = 0, l = arr.length; i < l; i++) { if (!dic.Exists(arr... 続きを読む