Answers for "js element on click"

2

document on click

$(document).on("click","#test-element",function() {
    alert("click");
});
Posted by: Guest on April-24-2021
9

javascript button

<button onclick="Function()">Text</button>
Posted by: Guest on May-10-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
1

element clicked js

document.addEventListener('click', function(e) {
    e = e || window.event;
    var target = e.target || e.srcElement,
        text = target.textContent || target.innerText;   
}, false);
Posted by: Guest on May-13-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language