Why function starts when the page is loaded? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why function starts when the page is loaded?

Hi! I don't understand why my function "change" starts when the page is loaded, if I don't go with mouse over label... https://code.sololearn.com/WrI3LNuXKU95 I've think to use array to add the Event Listener to each element, without write onmouseover="change();" it's possible?

16th Apr 2020, 9:37 PM
LoCoding
LoCoding - avatar
4 Answers
+ 2
You're calling the function when adding the event listener. Remove the parentheses and the array variable and just provide the name of the function. The function will receive the event not the element so change element to event as the function parameter. Then add the line let element = event.target; Afterwards your code will work. Here is a much more modified version of your code. https://code.sololearn.com/WIin09jmB0WC/?ref=app
16th Apr 2020, 11:42 PM
ChaoticDawg
ChaoticDawg - avatar
+ 2
You can just pass the function name without its parentheses or arguments. The function is a callback function which means its use is already defined with the method you're passing it to and the method will handle the passing of the arguments. It's also very common to pass an anonymous function or a lambda. function myfunc(arg) {} or var myfunc = function(arg) {}; elm.addEventListener(event, myfunc); //NOT! elm.addEventListener(event, myfunc(arg)); is also valid
18th Apr 2020, 8:03 PM
ChaoticDawg
ChaoticDawg - avatar
+ 1
ChaoticDawg Thank'u!
19th Apr 2020, 10:15 AM
LoCoding
LoCoding - avatar
0
Thank to everybody! So i can't call a function with argument without using "(argument) => "? I've understand?
18th Apr 2020, 4:24 PM
LoCoding
LoCoding - avatar