Advertisement
Guest User

mainpage

a guest
Nov 17th, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.42 KB | None | 0 0
  1. <script src="js/drawchart.js"></script>
  2. <script type="text/javascript">
  3. google.load('visualization', '1.0', {'packages':['corechart']});
  4. google.setOnLoadCallback(function(){  $("#post_yes").removeAttr('disabled'); });
  5.  
  6. $("#poll_yes").click(function(){
  7.     $("#result").html(ajax_load);
  8.     $.post(
  9.         "query.php",  
  10.         {answer: "yes", poll_id: 5},  
  11.         function(response){
  12.             drawChart(response);
  13.         }
  14.     );
  15. });
  16. </script>
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement