/***********************************************************************
* 1336.de shoutbox script *
* Copyright 2010 *
* Visit http://1336.de/free-customizable-shoutbox-chatbox/ for license *
***********************************************************************/
$(document).ready(function(){
function reloadOutput(json) {
$("#shoutbox_1336 .shoutbox_1336_output ul").html("");
$.each(json, function(i, message) {
$("#shoutbox_1336 .shoutbox_1336_output ul").append("
" + message.Name + " (" + message.Time + "): " + message.Message + "");
});
}
$("#shoutbox_1336").html("");
$.getJSON("http://1336.de/shoutbox/shoutbox.php?1336id=chromeos-blog.com&limit=5&lang=en&jsoncallback=?", function(json) {
reloadOutput(json);
});
$("#shoutbox_1336_form").submit(function() {
$.getJSON("http://1336.de/shoutbox/shoutbox.php?1336id=chromeos-blog.com&limit=5&lang=en&name="+encodeURIComponent($("#shoutbox_1336_name").val())+"&message="+encodeURIComponent($("#shoutbox_1336_message").val())+"&jsoncallback=?", function(json) {
reloadOutput(json);
});
$("#shoutbox_1336_name").val("Name");
$("#shoutbox_1336_message").val("Message");
return false;
});
$("#shoutbox_1336 input[type=text]").focus(function(){
this.select();
});
});