Should we be able to? pretty sure we currently can not yes to block yes to ignore yes to both no to both Vote View Results Should we be able to? pretty sure we currently can not - Results (48 votes) yes to block 6.25% (3 votes) 3 yes to ignore 12.5% (6 votes) 6 yes to both 41.67% (20 votes) 20 no to both 39.58% (19 votes) 19 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: '3', topic: '80409345', message: '0', key: '93a97752' }, 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(); } should