irc search
by
tyage
2013-07-16 [2013/07/16 21:37:37]
(Forked from
★ by
noromanba)
test
@@ -9,9 +9,13 @@
*/
(function () {
+ var word = prompt("検索ワードを入力(正規表現)"),
+ regex = new RegExp(word);
$.ajax({
url: "https://www.kmc.gr.jp/irclog/",
}).done(function(data) {
- console.log(data)
+ console.log($(".col0").filter(function() {
+ return $(this).text().match(regex);
+ }));
});
})();
/*
* @title KMC
* @description test
* @include http://*
* @include https://*
* @license MIT License http://nrm.mit-license.org/2012
* @require http://code.jquery.com/jquery-2.0.3.min.js
* @private
*/
(function () {
var word = prompt("検索ワードを入力(正規表現)"),
regex = new RegExp(word);
$.ajax({
url: "https://www.kmc.gr.jp/irclog/",
}).done(function(data) {
console.log($(".col0").filter(function() {
return $(this).text().match(regex);
}));
});
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。