Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //form pricing
- $('#precio').bind('keyup',function(event){
- val = $(this).val().toString(1);
- ivu = .07 * val;
- total = val + ivu;
- //deposit value
- $('#deposito').val(val / 2);
- //total value
- $('#total').val(total);
- })
Advertisement
Add Comment
Please, Sign In to add comment