JavaScript - Simple Insert Array Data

In this tutorial we will create a Simple Insert Array Data using JavaScript. This code will dynamically insert a new array value when the user click the add button. The code use onclick() function in order to launch a method that can insert a new batch of array value in a dictionary. 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 Array Data</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-2"></div>
  17. <div class="col-md-8">
  18. <div class="alert alert-info">Insert User Full Name</div>
  19. <form action="javascript:void(0);" method="POST" class="form-inline" onsubmit="insert()">
  20. <label>Full Name:</label>
  21. <input type="text" id="name" class="form-control"/>
  22. <button type="submit" class="btn btn-primary form-control"><span class="glyphicon glyphicon-plus"></span> Add</button>
  23. </form>
  24. <br />
  25. <br />
  26. <hr style="border-top:1px solid #000;"/>
  27. <table class="table table-bordered">
  28. <thead class="alert-info">
  29. <tr>
  30. <th>Full Name</th>
  31. </tr>
  32. </thead>
  33. <tbody id="name_list">
  34. </tbody>
  35. </table>
  36. </div>
  37. </div>
  38. </body>
  39. <script src="js/script.js"></script>
  40. </html>

Creating the Script

This code contains the script of the application. This code will insert a new 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.getElementById('name')
  22. var name = el.value;
  23. if (name) {
  24. names.push(name.trim());
  25. el.value = '';
  26. ListAll();
  27. }
  28. ListAll();
  29. };
There you have it we successfully created a Simple Insert Array Data 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