Add new input lines to HTML entry form

Please enter the number of people you would like entered. For more people, click the "Add Line" button.

Generate array of objects

Loop through HTML form lines and store the data into an array of objects

Generate a table from the array of objects

Local Name Local DOB Local Age Local Zodiac






Differences Between Jquery and Javascript

  1. Special Symbol "$" is used in place of the word jQuery and this exist in jQuery only. Javascript: var container = document.getElementById('container'); JQuery: var container = $("#container");
  2. jQuery uses a library url and that must be incuded in the head of the html doucument
  3. jQuery features an .addClass method for adding a class. Plain Javascript uses .classList.add
  4. Unlike Javascript, many JQuery methods return a JQuery object, not a raw DOM object.
  5. jQuery allows callback functions once execution has occured