~☑
by
noromanba
2012-10-26 [2012/10/26 01:40:23]
Toggle checkbox all
@@ -1,6 +1,6 @@
/*
* @title ☑
- * @description Toggle Chaeckbox all
+ * @description Toggle checkbox all
* @include http://*
* @license MIT License http://nrm.mit-license.org/2012
* @require
@@ -8,6 +8,6 @@
(function () {
Array.prototype.slice.call(document.querySelectorAll('input[type=checkbox]')).forEach(function (box) {
- box.checked = !box.checked;
+ box.checked = !box.checked;
});
})();
/*
* @title ☑
* @description Toggle checkbox all
* @include http://*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
(function () {
Array.prototype.slice.call(document.querySelectorAll('input[type=checkbox]')).forEach(function (box) {
box.checked = !box.checked;
});
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。