Puzzletag
Puzzletag Description
Tune your brains! Solve exciting puzzles and compete for the best score. 4 puzzle types are waiting for you, try to score in each!
");
jQuery('#rresult').fadeIn("slow");
});
}
else if (json_obj.data === "Already") {
jQuery('input[type="radio"]').prop('checked', false);
jQuery('#rate_in').fadeOut("slow", function () {
jQuery('#rresult p').html(
"
" +
"
" +
"Whooops! It looks like you voted already.
");
jQuery('#rresult').fadeIn("slow");
});
}
else if (json_obj.data === "Noguest") {
jQuery('input[type="radio"]').prop('checked', false);
jQuery('#rate_in').fadeOut("slow", function () {
jQuery('#rresult p').html(
"
" +
"
" +
"Sorry! You need to log in or register to vote.
");
jQuery('#rresult').fadeIn("slow");
});
}
},
error: function (response) {
jQuery('input[type="radio"]').prop('checked', false);
jQuery('#rate_in').fadeOut("slow", function () {
jQuery('#rresult p').html(
"
" +
"
" +
response + "
");
jQuery('#rresult').fadeIn("slow");
});
}
});
}