My question is, how can i use .removechild() in javascript without having the elements ID?
The reason I don''t have its ID, is because the td was only added using append child, which as far as i know, does not allow adding an ID as well, but i may be wrong?
I used :
var myRow = document.createElement("tr");
to make the child in my function at the start.