<html>
<body>
<p>Click the button to display the current click count of the clicked button.</p>
<button onclick="myFunction(event)">Click count:</button>
<input id="myInput" type="text">
<script>
function myFunction(event) {
var x = event.detail;
document.getElementById("myInput").value = x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_event_mouse_detail by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:03:01 GMT -->
</html>