Getting document is not defined , from document.getElementById
08:08 19 Dec 2016

I am learning JavaScript and I am using Atom (Text Editor). On my HTML file I got only this:




    
    


    

Hello Plunker!

On my javascript file, I am simply trying to access the "Display todos" button using this:

var displayTodosButton = document.getElementById('displayTodosButton')

I was watching a video, and the instructor is using plnkr.co, and he accesses the button just fine, yet on Atom I get the "ReferenceError: document is not defined"

How can I fix this?

enter image description here

javascript html atom-editor