Skip to content
Advertisement

Using PHP echoed options in JavaScript generated select options

WHAT AM I DOING?

I am making a transaction keeping application that has an option to bulk add transactions. It is a form which has a table inside. Each row of the table stands for one transaction with each cell having an input field. There is an option to remove a row and one to add a row.


Problems

I have two problems:

  1. When adding a row, how do I take original options for the select and then add them to the new selects.
  2. When deleting a row, shift all of the other input’s name attribute 1 down.

Code

Code Tried For The First Problem So Far

JavaScript
JavaScript

Second Problem

I have no idea where to begin!


Notes

JQuery Version: 3.5.1

PHP: Working – Confirmed

Getting Option Values: Working – Confirmed (Using console.log())

Any Questions For Me?


Thanks and I hope what I have provided is enough!

Advertisement

Answer

That is a nice job for jQuery .clone().

So basically, on page load, you “clone” the row and store it in a variable… Then on #add click, clone that again to append it to the table.

I made a rowNum function to loop all row and number them. Call that function on add and on delete.

Obviously, the PHP lines do not work here. 😉

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement