Program works Everywhere but Sololearn | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Program works Everywhere but Sololearn

It works on my machine lol But seriously, why does my code work on chrome and the internet but not on sololearn code playground. I don't understand why it doesnt understand my Event listener https://code.sololearn.com/WL556Oa51R7D/#js

31st Oct 2018, 1:10 AM
Brittany Brown
3 Answers
+ 11
Sololearn's code playground includes the JS part in too early, before your html body is even loaded and so your query selector returns a falsy result (implying it will crash on the event listener). What you can do for instance is enclosing the whole JS part by window.onload = function(){ <your code> }
31st Oct 2018, 1:34 AM
Dapper Mink
Dapper Mink - avatar
+ 5
It's a very common error noob gets here. Now just try to understand your errors. It's saying "Uncought TypeError: Cannot read property 'addEventListener' of null on line 3". Goto line 3 in your js code and you find "calculate.addEventListener('click..." and according to the error, it seems that 'calculate' is null! Now check where are you getting this 'calculate' from so it's actually a button you're storing in 'calculate' and since the calculate is null means it can't find the button inside your HTML code. That's it for the error. Now, it happens coz the js part gets loaded before the html part gets and so it can't find it's elements. All you need is to wrap your entire code inside a function which will be called after the html window get loaded. Here's how you can do this... window.onload= function(){ //your entire JS code goes here }
31st Oct 2018, 1:32 AM
Шащи Ранжан
Шащи Ранжан - avatar
8th Jan 2019, 1:49 PM
Edwing123
Edwing123 - avatar