Removechild Is Not A Function
window.onload = initPage; var firstname = false; var lastname = false; function initPage() { addEventHandler(document.getElementById('firstname'), 'blur', verifyFirst); ad
Solution 1:
Change the code on the line 68 from this
document.getElementById("displayname".removeChild(display[i]));
to this
document.getElementById("displayname").removeChild(display[i]);
Post a Comment for "Removechild Is Not A Function"