how to create an onclick event in javascript code example

Example 1: javascript button onclick programmatically

document.getElementById("myCheck").click();

Example 2: onclick in js

<input type="text" name="text" id="test" onmouseover="skriv('klick')">
    <input type="button" name="send" value="Skicka" id="klick" onclick="skriv('test')">
    
    
    <script src="lib/script.js"></script>


// in lib/script.js

  function skriv(name) {
    document.getElementById(name).style.backgroundColor='red';
  }

Example 3: html js button onclick

// In HTML:
// <button id="buttonID" onclick="yourJSFunction()">Text</button>

// In JavaScript:
function yourJSFunction() {
  // Do stuff
 }

Tags:

Css Example