Advertisement
Guest User

Untitled

a guest
May 11th, 2016
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <button type="button" class="calculate">Calculate</button>
  2.     <script>
  3.         $(document).on('ready', function() {
  4.             $(".calculate").on('click', function() {
  5.             var x1 = {{ var1 }};
  6.             var x2 = {{ var2 }};
  7.             var x3 = {{ var3 }};
  8.             var total = (x1 + x2 + x3)/3;
  9.             $('p.hui').html(total);
  10.             });
  11.  
  12.         });
  13.     </script>
  14. <p id='hui'></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement