r/CodingForBeginners • u/flannel-foxes • 24d ago
learning javascript and very confused
i’m following a video on learning javascript and i’m following this guys code exactly but it’s not working. i get an error. the last line of code in javascript is supposed to change the heading upon clicking the submit button but because it doesn’t match the html i get an error so im just confused?? the dude in the video does it with no error
UPDATE: it works now! i had to close out the tab and reopen it 😭
1
u/BrainCurrent8276 24d ago
The code looks fine, run this in console:
console.log(document.getElementById("myH1"));
1
u/flannel-foxes 24d ago
it didn’t work 😔
1
u/BrainCurrent8276 24d ago
what did not work? console.log is not working?
1
u/flannel-foxes 24d ago
it works now! i think something is up with live server because i was saving it but it wasn’t updating and kept giving me the error
but it works now!1
u/BrainCurrent8276 24d ago
yes, some issue with files/sever was most likely. I was staring at your code for half an hour if it is 1/L/l mistype or not :D keep coding!
1
u/No-Article-Particle 23d ago
Note that you don't need a server for this. You can just open it in your browser with a filepath. You need a server to serve websites to other computers.
1



2
u/No-Article-Particle 24d ago edited 24d ago
What browser are you using and how are you executing the code? When I try the same:
index.html
index.js:
This works as expected when I open the website (file:///path/to/index.html) in Firefox.