- 2010/04/02 ie6 , jquery , jQuery Plugin

IE6をクラッシュさせる事ができるjQueryプラグイン「one line jQuery plugin to crash IE6」をご紹介。
使いどころには充分ご注意ください。
詳しくは以下
プラグインのコードは1行で実装されています。
/**
* jQuery Crash (http://mktgdept.com/jquery-crash)
* A jQuery plugin to crash IE6.
*
* v0.0.2 - 5 March 2010
*
* Copyright (c) 2009 Chad Smith (http://twitter.com/chadsmith)
* Dual licensed under the MIT and GPL licenses.
* http://www.opensource.org/licenses/mit-license.php
* http://www.opensource.org/licenses/gpl-license.php
*
* Use $.crash();
*
**/
;jQuery.crash=function(x){for(x in document.open);};
プラグインを読み込んだ後はページ内で以下のコードを入れるだけになります。
$.crash();
javascriptでIE6がクラッシュする理由は以下のサイトに詳しくのっていました。
試してみたいという方はどうぞ。
こちらもあわせてどうぞ
- Newer: PHP製のテンプレートライブラリ「Template Inheritance」
- Older: Twitterで使える特殊文字一覧


0