Answers for "get value from another textinput and set is to another using jquery"

1

get value from another textinput and set is to another using jquery

// If you have input value for hours and for the money(which is readonly) them this works
$("#hours").change(function(){
  let times = $('#hours').val();
  $('#amount').val(20000 * times);
});
Posted by: Guest on August-20-2021

Code answers related to "get value from another textinput and set is to another using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language