Horje
how to say what happens on left click in HTML Code Example
how to say what happens on left click in HTML
<button id="button">Alt+Shift+Click on me!</button>

<script>
  button.onclick = function(event) {
    if (event.altKey && event.shiftKey) {
      alert('Hooray!');
    }
  };
</script>




Html

Related
reset button javascript onclick Code Example reset button javascript onclick Code Example
service worker symfony webpack encore Code Example service worker symfony webpack encore Code Example
copy right html footer Code Example copy right html footer Code Example
disable html form input autocomplete autofill Code Example disable html form input autocomplete autofill Code Example
vuejs v-on Code Example vuejs v-on Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7