Skip to content

Instantly share code, notes, and snippets.

@JonathanVeg
Created May 14, 2013 21:14
Show Gist options
  • Save JonathanVeg/5579601 to your computer and use it in GitHub Desktop.
Save JonathanVeg/5579601 to your computer and use it in GitHub Desktop.
$(".like").click(function() {
var exercice = $("#exercice-select").val();
var evaluationPro = $('#vote-answer .like p');
var evaluationCon = $('#vote-answer .dislike p');
$.get("/user/home?like='" + exercice + "'", function(json){
alert(json);
evaluationPro.html(json[0]);
evaluationCon.html(json[1]);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment