Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. $(function(){
  3.     $('.leds').keyup(function(){
  4.         var total = 0;
  5.         $(this).each(function(){
  6.             total += $(this).val();
  7.         });
  8.         $('#resultado').html(total);
  9.     });
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement