$(document).ready(function(){
$(".bvotar").hide();
loading= new Image(16, 16);
loading.src="/img/loading1.gif";
$('.auto-submit-star').rating({
callback: function(value, link){
id=$(this).parent().attr("id");
tmp=id.split("frase_");
id=tmp[1];
form=$("form#frase_" + id);
div=form.parent();
form.after('
');
$.post("/ajax.php",{
funcion: "votar",
ajax: 1,
frase: id,
rating: value
},function(html){
form.remove();
div.html('
Gracias por votar :)
'); }); } }); });