Answers for "how to add two numbers values in jquery w3schools"

3

how to add two number using jqueryu

var a=parseInt($("#d1").val());
var b=parseInt($("#d2").val());
var sum=a+b;
alert($(sum));
Posted by: Guest on June-15-2020

Code answers related to "how to add two numbers values in jquery w3schools"

Code answers related to "Javascript"

Browse Popular Code Answers by Language