window.onload = function afterWebPageLoad() { var question = document.getElementById("matched"); // <-- Moved inside if (question) { console.log("id 'matched' exists"); } else { console.log("id 'matched' not found"); } }
0

window.onload = function afterWebPageLoad() { var question = document.getElementById("matched"); // <-- Moved inside if (question) { console.log("id 'matched' exists"); } else { console.log("id 'matched' not found"); } }