JavaScript - Simple Insert Multiple Arrays

In this tutorial we will create a Simple Insert Multiple Arrays using JavaScript. This code will dynamically insert a multiple you array data when the user submit all the data fields. The code use onclick() function to call a method that can insert a multiple array with the use of for() loop to repeat the insert that is base on the array index. You can apply this script to your code to make your transaction faster, it is a user-friendly program feel free to modify it. We will use JavaScript to add some new feature to the website interface by actually written into an HTML page. It is what gives your page a different interactive elements and animation that engage a user.

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.         <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">Sourcecodster</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 Insert Multiple Arrays</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <div class="col-md-6">
  17.                         <div class="alert alert-info">Insert User Full Name</div>
  18.                         <form action="javascript:void(0);" method="POST" onsubmit="insert()">
  19.                                 <div class="form-group">
  20.                                         <label>Full Name:</label>
  21.                                         <input type="text" class="form-control name" placeholder="First Member"/>
  22.                                         <input type="text" class="form-control name" placeholder="Second Member"/>
  23.                                         <input type="text" class="form-control name" placeholder="Third Member"/>
  24.                                 </div>
  25.                                 <br />
  26.                                 <button type="submit" class="btn btn-primary form-control"><span class="glyphicon glyphicon-plus"></span> Add</button>
  27.                         </form>
  28.                 </div>
  29.                 <div class="col-md-6">
  30.                         <table class="table table-bordered">
  31.                                 <thead class="alert-info">     
  32.                                         <tr>
  33.                                                 <th>Full Name</th>
  34.                                         </tr>
  35.                                 </thead>
  36.                                 <tbody id="name_list">
  37.                                 </tbody>
  38.                         </table>
  39.                 </div>
  40.         </div>
  41. </body>
  42. <script src="js/script.js"></script>
  43. </html>

Creating the Script

This code contains the script of the application. This code will insert a multiple array value 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. var el = document.getElementById('name_list');
  2. var names = [];
  3.  
  4. ListAll();
  5.  
  6. function ListAll() {
  7.         var data = '';
  8.         if (names.length > 0) {
  9.                 for (i = 0; i < names.length; i++) {
  10.                         data += '<tr>';
  11.                         data += '<td>' + names[i] + '</td>';
  12.                         data += '</tr>';
  13.                 }
  14.         }
  15.        
  16.         el.innerHTML = data;
  17. };
  18.  
  19.  
  20. function insert() {
  21.         var el=document.getElementsByClassName('name');
  22.         var first=el[0].value;
  23.         var second=el[1].value;
  24.         var third=el[2].value;
  25.        
  26.         if(first=="" || second=="" || third==""){
  27.                 alert("Complete the required field!");
  28.         }else{
  29.                 for(var i=0; i<el.length; i++){
  30.                         var name=el[i].value
  31.                         names.push(name.trim());
  32.                         el[i].value = '';
  33.                 }
  34.                 ListAll();
  35.         }
  36. };
There you have it we successfully created a Simple Insert Multiple Arrays 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