0
Uncaught ReferencedError: section is not defined
Need help can't figure it out why I'm getting this error https://code.sololearn.com/W1150PCJznFV/?ref=app
1 Answer
+ 6
You cannot access Html Element directly in javascript, u need to target that element and store it in some sort of variable
Like:
let section = document.querySelector("section")