irc submit
by
tyage
2013-07-16 [2013/07/16 21:37:43]
test
@@ -13,7 +13,20 @@
url: "https://www.kmc.gr.jp/irclog/ircweb.pl"
}).done(function(data) {
var data = $("<div>").html(data),
- channels = $("<div>").appendTo("body");
+ channels = $("<div>")
+ .css({
+ position: "absolute",
+ top: 10,
+ left: 0,
+ width: "100%"
+ }).append(
+ $("<div>").css({
+ background: "gray",
+ width: 300,
+ padding: 10,
+ margin: "0 auto"
+ })
+ ).appendTo("body");
data.find("a").filter(function() {
return $(this).attr("href").match(/^\?channel/);
@@ -31,4 +44,4 @@
});
}).appendTo(channels);
});
-})()
+})();
/*
* @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({
position: "absolute",
top: 10,
left: 0,
width: "100%"
}).append(
$("<div>").css({
background: "gray",
width: 300,
padding: 10,
margin: "0 auto"
})
).appendTo("body");
data.find("a").filter(function() {
return $(this).attr("href").match(/^\?channel/);
}).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 です。