Código
$(document).ready(function() { $(".like").click(function() { var id=$(this).attr("id"); var name=$(this).attr("name"); var dataString = 'id='+ id + '&name='+ name; $("#votebox").slideDown("slow"); $("#flash").fadeIn("slow"); $.ajax ({type: "POST",url: "rating.php",data: dataString,cache: false,success: function(html) { $("#flash").fadeOut("slow"); $("#content").html(html); $("#pruebas").fadeOut("hide"); } }); }); $(".close").click(function() { $("#votebox").slideUp("slow"); }); });
y me gustaria que cuando haga este paso
Código
$.ajax ({type: "POST",url: "rating.php",data: dataString,cache: false,success: function(html) { $("#flash").fadeOut("slow"); $("#content").html(html); $("#pruebas").fadeOut("hide"); }
desde hay podria sacar una coockie para que se quedara oculto y nose ocmo hacerlo
UN saludo y gracias