Any javascript isnt working

https://replit.com/@ZombieBlox/Javascript?v=1

HTML:

<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>replit</title>
  <link href="style.css" rel="stylesheet" type="text/css" />
</head>

<body>
  <p id="p"></p>
  <script src="script.js"></script>
</body>

</html>

JS:

document.onload = function() {
  var p = document.getElementById("p");
  p.innerHTML = "My web";
  console.log("Hi")
}

document.onload is not defined in js, use window.onload instead.

If this helped you, feel free to mark this as the solution!

4 Likes

I will try to do that

Thank you very much for helping me

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.