dynmap/web/chat.js

22 lines
497 B
JavaScript
Raw Normal View History

2011-02-18 10:21:55 +01:00
function sendChat(message) {
var ip;
$.ajax({
type: "GET",
url: "http://jsonip.appspot.com/?callback=?",
dataType: "jsonp",
success: function(getip) {
var data = '{"name":"'+getip.ip+'","message":"'+message+'"}';
$.ajax({
type: 'POST',
2011-02-19 21:08:14 +01:00
url: 'up/sendmessage',
data: data,
dataType: 'json',
success: function(response) {
//handle response
2011-02-18 10:21:55 +01:00
}
});
}
});
}
//curl -d '{"name":"Nickname","message":"Hello"}' http://localhost:8123/up/sendmessage