Guest User

Untitled

a guest
Feb 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. $("#one").on('input', recalcSum);
  2. $("#two").on('input', recalcSum);
  3.  
  4. function recalcSum() {
  5. var res = $("#one").val() * $("#two").val() + '$';
  6. $("#res").text(res);
  7. }
Add Comment
Please, Sign In to add comment