how to detect a button click in javascript
if(document.getElementById('button').clicked == true)
{
alert("button was clicked");
}
how to detect a button click in javascript
if(document.getElementById('button').clicked == true)
{
alert("button was clicked");
}
javascript onclick button
var button = document.querySelector('button');
button.onclick = function() {
//do stuff
}
javascript onclick
var myElem = document.getElementByID('ElemID');
myElem.onclick = function() {
//do stuff
}
javascript click event
<button onclick="myFunction()">Click me</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Hello World";
}
</script>
element clicked js
document.addEventListener('click', function(e) {
e = e || window.event;
var target = e.target || e.srcElement,
text = target.textContent || target.innerText;
}, false);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us