auto populate form with percentage calculation javascript

Solutions on MaxInterview for auto populate form with percentage calculation javascript by the best coders in the world

showing results for - "auto populate form with percentage calculation javascript"
Evann
23 Feb 2019
1function mult(value) {
2    var w, x, y, z;
3
4    x = 3;
5    y = (x / 100) * parseInt(value);
6    z = parseInt(value) + parseInt(y);
7
8
9    document.getElementById('percent').value = y;
10    document.getElementById('total').value = z;
11}
similar questions