Parent: [43e88a] (diff)

Child: [9932c8] (diff)

Download this file

vote.js    35 lines (33 with data), 896 Bytes

 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
$(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);
if (vote === 'u') {
$('#vote .js-vote-up').toggleClass('active');
} else if (vote === 'd') {
$('#vote .js-vote-down').toggleClass('active');
}
}
}
});
}
$('#vote .js-vote-up').click(function() {
vote('u');
});
$('#vote .js-vote-down').click(function() {
vote('d');
});
});