Parent: [629d61] (diff)

Child: [3e449f] (diff)

Download this file

vote.js    39 lines (37 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
$(document).ready(function() {
function vote(vote) {
var $form = $('#vote form');
var url = $form.attr('action');
var method = $form.attr('method');
var _session_id = $form.find('input[name="_session_id"]').val();
$.ajax({
url: url,
type: method,
data: {
vote: vote,
_session_id: _session_id
},
success: function(data) {
if (data.status == 'ok') {
$('#vote .votes-up').text(data.votes_up);
$('#vote .votes-down').text(data.votes_down);
var $vote_up = $('#vote .js-vote-up');
var $vote_down = $('#vote .js-vote-down');
if (vote === 'u') {
$vote_up.toggleClass('active');
$vote_down.removeClass('active');
} else if (vote === 'd') {
$vote_down.toggleClass('active');
$vote_up.removeClass('active');
}
}
}
});
}
$('#vote .js-vote-up').click(function() {
vote('u');
});
$('#vote .js-vote-down').click(function() {
vote('d');
});
});