Dynamically add form fields with jquery not posting
I have succeeded in setting up the form and making it work. However I have a issue I got this Jquery from this http://jsfiddle.net/34rYv/25/ Everything works fine but when I post my data to a tcpdf newly created row didnt send, and mean time I want to add to the database also, please anyone knows the answer much appreciate. here is my codes <script type="text/Javascript"> $(document).ready(function() { $('#btnAdd').click(function() { var num = $('.clonedSection').length; var newNum = new Number(num + 1); var newSection = $('#pq_entry_' + num).clone().attr('id', 'pq_entry_' + newNum);