JavaScript - Dynamically Get Area Of Parallelogram

In this tutorial we will create a Dynamically Get Area Of Parallelogram using JavaScript. This code will dynamically calculate the area of the parallelogram when the user entered the inputs in the form. This code use onclick function to call a specific function that compute the area of parallelogram by the use of a certain formula. This program is a user-friendly feel free to use it in your system. We will use JavaScript to allow you to implement complex things on web pages. It enables you to create dynamically updating content and add some interactive visual for the user transactions.

Getting Started:

This is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  4. <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
  5. </head>
  6. <nav class="navbar navbar-default">
  7. <div class="container-fluid">
  8. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  9. </div>
  10. </nav>
  11. <div class="col-md-3"></div>
  12. <div class="col-md-6 well">
  13. <h3 class="text-primary">JavaScript - Dynamically Get Area Of Parallelogram</h3>
  14. <hr style="border-top:1px dotted #ccc;"/>
  15. <div class="col-md-4">
  16. <div class="form-group">
  17. <label>b</label>
  18. <input type="number" class="form-control" id="b" />
  19. </div><div class="form-group">
  20. <label>h</label>
  21. <input type="number" class="form-control" id="h" />
  22. </div>
  23. <center><button type="button" class="btn btn-primary" id="btn" onclick="calculateArea(this);">Calculate</button> <button type="button" class="btn btn-success" onclick="reset();">Reset</button></center>
  24. </div>
  25. <div class="col-md-8">
  26. <br />
  27. <div id="result"></div>
  28. </div>
  29. </div>
  30.  
  31. <script src="js/script.js"></script>
  32. </body>
  33. </html>

Creating the Script

This code contains the script of the application. This code will compute the area of the parallelogram when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js directory
  1. function reset(){
  2. document.getElementById('b').value = "";
  3. document.getElementById('h').value = "";
  4. document.getElementById('result').innerHTML = "";
  5. document.getElementById('btn').removeAttribute('disabled');
  6. }
  7.  
  8.  
  9. function calculateArea(btn){
  10. var b = document.getElementById('b').value;
  11. var h = document.getElementById('h').value;
  12.  
  13. if(b != "" && h !=""){
  14. var par_b=parseInt(b);
  15. var par_h=parseInt(h);
  16.  
  17. var area=par_b*par_h;
  18.  
  19. btn.setAttribute('disabled', 'disabled');
  20.  
  21. document.getElementById('result').innerHTML = "<center><label style='font-size:26px;'>The Area of Parallelogram is</label> <br /><span class='text-primary' style='font-size:30px;'>"+area+"</span></center>";
  22.  
  23. }else{
  24. alert("Please enter something first!");
  25. }
  26.  
  27. }
There you have it we successfully created a Dynamically Get Area Of Parallelogram using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment