One has to go. Which do you pick? Sonics 1, 2, 3, & K the entirety of DBZ Vote View Results One has to go. Which do you pick? - Results (19 votes) Sonics 1, 2, 3, & K 36.84% (7 votes) 7 the entirety of DBZ 63.16% (12 votes) 12 Show Voting Form function poll_vote() { var vote_option = $("input[name='poll_vote']:checked").val(); if(!vote_option) return; $.ajax({ type: 'POST', url: '/ajax/forum_poll_vote', data: { option: vote_option, board: '400', topic: '80300047', message: '0', key: 'b0376a27' }, success: function(response) { if(response.error) { alert(response.error); } else { $("#poll_vote").hide(); $("#poll_results").html(response.html).show(); } } }); } function view_results_legacy() { $("#poll_vote").hide(); $("#poll_results").show(); } function hide_results_legacy() { $("#poll_results").hide(); $("#poll_vote").show(); } Sorry.