Was ich tun möchte, ist ein Attribut eines Objekts ändern, aber nur für dieses eine. Also etwas wie $('.up img').attr("src","img/up.png")
für das, was angeklickt wurde, nicht alle Elemente, die .up img
haben.
jQuery:
$('.up img').click( function(){
var postDataUp = $(this).attr('mod');
$.post('/votePost.php', {varUp: postDataUp}, function(o){
console.log(o);
if(o == 1){
$('.up img').attr("src","img/up.png");
}else if(o == 2){
$('.up img').attr("src","img/up-g.png");
$('.down img').attr("src","img/dw.png");
}else if(o == 3){
$('.up img').attr("src","img/up.png");
}
}, 'json');
});