here is my JavaScript you can see the addForm function which adds a new table row to the dom the new added form element to the dom eventlisteners don't work on it
animationsDiv=document.getElementById('animationsDiv');
bodytablerow=document.getElementById('bodytablerow');
DeleteButtom=document.getElementById('DeleteButtom');
SubmitButton=document.getElementById('SubmitButton');
addButton=document.getElementById('addButton');
removeForm=eventt=>{
eventt.target.parentElement.parentElement.remove()
}
AddForm=eventt=>{
bodyy=eventt.target.parentElement.firstElementChild.firstElementChild;
g=`new added code (HTML)`
bodyy.insertAdjacentHTML("beforeend", g);
};
eventapplyBorder=eventt=>{
const INPUTCONTAINER=eventt.target.parentElement;
INPUTCONTAINER.classList.toggle('outline');
eventt.target.value
};
inputs.forEach(input=>{
input.addEventListener('focus',eventt=>eventapplyBorder(eventt));
input.addEventListener('blur',eventt=>eventapplyBorder(eventt));
});
SubmitButton.addEventListener('click',eventt=>SubmitUser(eventt));
DeleteButtom.addEventListener('click',eventt=>removeForm(eventt));
addButton.addEventListener('click',eventt=>AddForm(eventt));