Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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);
});
 
PREVIOUS NEXT
Tagged: #textinput #set #jquery
ADD COMMENT
Topic
Name
8+2 =