Answers for "how to pass an argument to an event listener function in using javascript"

1

how to call a function with arguments on event listener javascript

element.addEventListener("click", () => {
    functionYouWantToCall(yourArguments);
});
Posted by: Guest on January-08-2021
1

pass argument to event listener javascript

someObj.addEventListener('click', some_function(someVar) );

const some_function = (someVar) => {
  	return (e) => {
      console.log(someVar)
      console.log(e)
    }
}
Posted by: Guest on January-20-2021

Code answers related to "how to pass an argument to an event listener function in using javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language