Which? Millennial Zoomer Vote View Results Which? - Results (25 votes) Millennial 84% (21 votes) 21 Zoomer 16% (4 votes) 4 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: '80313385', message: '0', key: '78e28e3a' }, 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(); } hmm? --- ...to make my way in the world as a music man