c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
JavaScript

How to display sum of two textbox values in third textbox automatically?

| | JavaScript , JQuery

In this article, I will show you how to add numbers in html using onkeyup() event in JavaScript. Here, when the user enters the values in the first two textbox values without pressing any buttons it sums the values automatically in the third textbox.

SCRIPT CODE:

<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.js"></script>
    <script type="text/javascript">
        function sum() {
            var txtFirstNo = document.getElementById('txtFirstNo').value;
            var txtSecondNo = document.getElementById('txtSecondNo').value;
            var result = parseInt(txtFirstNo) + parseInt(txtSecondNo);
            if (!isNaN(result)) {
                document.getElementById('txtResult').value = result;
            }
        }
    </script>

HTML CODE:

<div style="border:1px solid gray;width: 450px; height:300px">
        <h2>Add two textbox values without pressing anybuttons</h2>
        <input type="text" id="txtFirstNo" placeholder="pleaseenterFirst Number" onkeyup="sum()" />
        <input type="text" id="txtSecondNo" placeholder="pleaseenterSecond Number" onkeyup="sum()" />
        <br />
        <div style="padding-top:10px">
            Result:
            <input type="text" id="txtResult" />
        </div></div>

Output:

Below video will demonstrate how to add two textbox values and display the sum in a third using onkeyup() event in JavaScript. Here, when the user enters the values in the first two textbox values without pressing any buttons it sums the values automatically in the third textbox.