Be honest 18-24 25-30 30-40 40-50 60+ Vote View Results Be honest - Results (283 votes) 18-24 45.94% (130 votes) 130 25-30 32.86% (93 votes) 93 30-40 14.84% (42 votes) 42 40-50 1.06% (3 votes) 3 60+ 5.3% (15 votes) 15 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: '80137790', message: '0', key: '9740a1ae' }, 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(); } Discuss.