Answers for "how to add a on click function in js"

9

how to add onclick event in javascript

var element = document.getElementById("elem");
element.onclick = function(event) {
  console.log(event);
}
Posted by: Guest on May-20-2020
-1

how to create click function in javascript

var x = document.getElementById('container');
//click can also be antother event
x.addEventListener('click', function (x) {
  console.log('hi');
});
Posted by: Guest on February-21-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language