Answers for "auto populate form with percentage calculation javascript"

0

auto populate form with percentage calculation javascript

function mult(value) {
    var w, x, y, z;

    x = 3;
    y = (x / 100) * parseInt(value);
    z = parseInt(value) + parseInt(y);


    document.getElementById('percent').value = y;
    document.getElementById('total').value = z;
}
Posted by: Guest on September-03-2021

Code answers related to "auto populate form with percentage calculation javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language