How do you use javascript, when i try to use it it does'nt exist | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How do you use javascript, when i try to use it it does'nt exist

please help me!!

12th Feb 2018, 6:25 PM
Wilrem8
3 Answers
+ 3
If you're in sololearn code playground context, the JS code in the JS tab is called in <head> part of Html source/tab, so document is not ready at runtime: you should wrap the JS code requiring access to any document element inside a function called only when document ready (through body/window 'load' event, or document 'DOMContentLoaded'... In the JS tab, this code will fail: var body = document.getElementsByTagName('body')[0]; ... as it will return null. But this one works well: window.onload = function() { var body = document.getElementsByTagName('body')[0]; } Anyway, be careful of wich variable scope you're used to declare your variables, if you want to access them from anywhere... Previous 'body' variable will be only accessible to function declared inside the same (anonymous) scope: window.onload = function() { var body = document.getElementsByTagName('body')[0]; global_test(); // undefined local_test(); // HTMLBodyElement function local_test() { console.log(body+''); // undefined } } function global_test() { console.log(body+''); // undefined }
13th Feb 2018, 3:11 AM
visph
visph - avatar
+ 2
You can embedd it in HTML for example.
12th Feb 2018, 6:34 PM
SQL Guy
+ 1
thanks
12th Feb 2018, 6:35 PM
Wilrem8