JavaScript - Simple Dynamic Input Form

In this tutorial we will create a Simple Dynamic Input Form using JavaScript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It is a text-based programming language meant to run as part of a web-based application. It is an interpreted programming language that has a capabilities of Object-Oriented. So Let's do the coding...

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into your text editor, then save it as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7.         <nav class="navbar navbar-default">
  8.                 <div class="container-fluid">
  9.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10.                 </div>
  11.         </nav>
  12.         <div class="col-md-3"></div>
  13.         <div class="col-md-6 well">
  14.                 <h3 class="text-primary">JavaScript - Simple Dynamic Input Form</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <form method="POST">
  17.                         <h3>Form Field</h3>
  18.                         <div id="forms" class="form-inline">
  19.                                 <input type="text" class="form-control" placeholder="Enter some text" name="form[]">
  20.                         </div>
  21.                         <br />
  22.                         <button type="button" class="btn btn-primary" onclick="addField();">Add Field</button>
  23.                 </form>
  24.         </div>
  25. <script src="js/script.js"></script>   
  26. </body>
  27. </html>

Creating the Script

This code contains the script of the application. This code will add input field dynamically 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 folder.
  1. var fieldId = 0;
  2.  
  3. function addElement(parentId, elementTag, elementId, html){
  4.         var id = document.getElementById(parentId);
  5.         var newElement = document.createElement(elementTag);
  6.         newElement.setAttribute('id', elementId);
  7.         newElement.innerHTML = html;
  8.         id.appendChild(newElement);
  9.  
  10. }
  11.  
  12. function removeField(elementId){
  13.         var fieldId = "field-"+elementId;
  14.         var element = document.getElementById(fieldId);
  15.         element.parentNode.removeChild(element);
  16. }
  17.  
  18. function addField(){
  19.         fieldId++;
  20.         var html = '<br /><input type="text" name="form[]" class="form-control" placeholder="Enter some text">' + '<button class="btn btn-danger" onclick="removeField('+fieldId+');"><span class="glyphicon glyphicon-minus"></span></button><br />';
  21.         addElement('forms', 'div', 'field-'+ fieldId, html);
  22. }
There you have it we successfully created a Simple Dynamic Input Form 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