irc submit
by
tyage
2013-07-16 [2013/07/16 21:37:43]
test
@@ -30,6 +30,8 @@
data.find("a").filter(function() {
return $(this).attr("href").match(/^\?channel/);
+ }).css({
+ display: "block"
}).click(function() {
var body = prompt("発言内容:"),
channel = $(this).attr("href").match(/^\?channel=(.*)/)[1];
/*
* @title irc submit
* @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() {
$.ajax({
url: "https://www.kmc.gr.jp/irclog/ircweb.pl"
}).done(function(data) {
var data = $("<div>").html(data),
channels = $("<div>").css({
background: "gray",
width: 300,
padding: 10,
margin: "0 auto"
}).appendTo(
$("<div>")
.css({
position: "absolute",
top: 10,
left: 0,
width: "100%"
}).appendTo("body")
);
data.find("a").filter(function() {
return $(this).attr("href").match(/^\?channel/);
}).css({
display: "block"
}).click(function() {
var body = prompt("発言内容:"),
channel = $(this).attr("href").match(/^\?channel=(.*)/)[1];
$.ajax({
url: "https://www.kmc.gr.jp/irclog/ircweb.pl",
type: "POST",
data: {
channel: channel,
body: body
}
});
}).appendTo(channels);
});
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。