Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by 3lyfox

  1. 3lyfox

    JavaScript some kind of error in my code

    thx for the help but i figured an "easier" solution took me some time but thats pretty much what i did const tableBody = document.getElementById("tableBody"); const tid = document.getElementById("tid"); const tad = document.getElementById("tad"); const tti = document.getElementById("tti")...
  2. 3lyfox

    JavaScript some kind of error in my code

    tried to make that change still no change in the console it says "uncaught reference Error taskList is not defined" (in line 13) and when i try to run it anyways it says same thing in line 25 with Task not being defined
  3. 3lyfox

    JavaScript some kind of error in my code

    from what i know the script is supposed to take the info i put in the html and display / add it on screen as a table but it keeps saying i have an error that something isnt defined or / missing
  4. 3lyfox

    JavaScript some kind of error in my code

    thats my html of it -- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Task Board</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="h1">...
Back
Top Bottom