Attempting to duplicate a div containing input fields but the event listeners are not functioning.
Despite performing a deep copy in the following manner -
let rows = document.querySelectorAll('.row');
let dupNode = rows[0].cloneNode(true);
sheet.appendChild(dupNode);
View the Demo here
Every input field has a click event attached, however, the cloned inputs do not seem to be recognizing the click event. What could I be overlooking?