hey, i'm trying to change the html of a div after an ajax request, the ajax request works. the data is correct but the selector can't seems to find the div
here's the code
$(".home .up_0").click(function(){
$.post("includes/vote.php",
{
truc : $(this).attr("id")
},
function(data){
if(data=='fail')
{
alert("Error.");
}
else
{
$(this).parents('.home').find('.score_neutre').html(data);
}
}
);
});