Answers for "set value in an input"

19

javascript set input field value

document.getElementById("myInputID").value = "My Value"; //set value on myInputID
Posted by: Guest on August-05-2019
0

insert value to html input with javascript variable

function product(a, b) {
   return a * b;
}
function setInputValue(input_id, val) {
    document.getElementById(input_id).setAttribute('value', val);
}
Posted by: Guest on July-17-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language