Took a while to come up with a way to add or remove dynamic form input fields using jQuery to be able to add specific number of inputs into a database. See the code in action here: JSFiddle $(document).ready(function(){ var nf; $(“#addfeatnow”).on(‘click’, SecondFeat); $(“#remfeatnow”).on(‘click’, FirstFeat); var storednf = JSON.parse(localStorage.getItem(‘nf’)); if((nf == null || !nf) && […] ↓ Read the rest of this entry…