Why does the removeChild property not work? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Why does the removeChild property not work?

On line 14 (where the problem starts), the error says it cannot read removeChild property of null. Why is that? Where have I gone wrong? This has been driving me crazy for days. Thank you. https://code.sololearn.com/Wj08FS8TYDSe/?ref=app

4th Feb 2018, 4:52 PM
jacksonofgames 28
jacksonofgames 28 - avatar
1 Answer
+ 2
Your 'body' variable is equal to null, because the JS tab is injected in the head of the HTML page prior to the body. So the element doesn't exist in the DOM as of yet. You have the 'type()' function set to window.onload, but what you need to do is wrap all your JS in an onload function leaving password, show(), and enter() outside the onload function, then just call 'type()' at the bottom. window.onload = function() { var body = document.getElementById("container"); var view = document.getElementById("pop"); var complete = document.getElementById("run"); function type() { console.log(password); if (password.length < 8) { alert("That password is too short, restart the program to try again"); body.removeChild(view); body.removeChild(complete); } else if (password.length > 8) { alert("That password is too long, restart the program to try again"); body.removeChild(view); body.removeChild(complete); } else if (password.length === 8) { alert("Your password was accepted"); } } type(); }; var password = prompt("Enter what you want your password to be (8 characters)"); function show() { alert("Your password is " + password); } function enter() { var authenticate = prompt("Please enter your password"); if (authenticate === password) { alert("Welcome to your page"); document.write("YOU MADE IT!!!"); } else { alert('That password is incorrect, please press the "Enter Password" button again to retry'); } }
4th Feb 2018, 6:32 PM
ChaoticDawg
ChaoticDawg - avatar