Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).on("change",".chilean-format",function() {
  2.     var idRealInput            = $(this).data("real-input"); // < input type= "x" class = "chilean-format" data-real-input="#id-real-input" />
  3.     var valueFormatedInput     = $(this).val();
  4.     var numeralFormatedBackEnd = numeral(valueFormatedInput);
  5.  
  6.     $(idRealInput).val(numeralFormatedBackEnd.value);
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement