\n');
}
/*
$(document).ready(function() {
// AJAX get initial count
$.getJSON("/sockandawe/index.php", {
xhr: 'true',
mode: 'total',
}, function(json) {
$("#shoe_count").html(json.shoe_count);
});
});
*/
function email_friend(email, score, recipient) {
var int_score = parseInt(score);
$.getJSON("/sockandawe/index.php", {
email: email,
score: int_score,
f_email: recipient,
mode: "friend"
}, function(json) {});
}
function score(name, score, email, hash) {
var int_score = parseInt(score);
$.getJSON("/sockandawe/index.php", {
name: name,
score: int_score,
email: email,
hash: hash,
mode: "score"
}, function(json) {});
}
function thrown(score, hash) {
var int_score = parseInt(score);
$.getJSON("/sockandawe/index.php", {
score: int_score,
hash: hash,
mode: "thrown"
}, function(json) {});
}
//]]>