Skip to content
Advertisement

Cannot set property ‘onclick’ of null in my function js

I have a problem. I used javascript for settings display block or display none. I get an error in the console “Uncaught TypeError: Cannot set property ‘onclick’ of null at script.js?ver=1.0.0:15”. I added a script tag in the header, then in the footer and still the same. Also I added defer in my script tag and still nothing. Function it works on another site.

JS Code

JavaScript

HTML and PHP code

JavaScript

Advertisement

Answer

try using DOMContentLoaded event:

JavaScript

Now the script should run only when the Html content has been loaded 🙂

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement