Answers for "onclick using js"

13

javascript onclick

var myElem = document.getElementByID('ElemID');
myElem.onclick = function() {
	//do stuff
}
Posted by: Guest on February-10-2020
3

javascript onclick

// The element id (TheElementID) and var name (myElement) can be named anything.
var myElement = document.getElementByID('TheElementID');
myElement.onclick = function() {
	// Carry out a function here...
}
Posted by: Guest on October-19-2020
4

button click function in js

<script>
  $(document).ready(function(){
    $('#MyButton').click(function(){
       CapacityChart();
    });
  });
</script>

<input type="button" value="Capacity Chart" id="MyButton" >
Posted by: Guest on May-27-2020
2

html js button onclick

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

// In JavaScript:
function yourJSFunction() {
  // Do stuff
 }
Posted by: Guest on April-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language