--- title: Onclick Event --- ## Onclick Event The `onclick` event in JavaScript lets you as a programmer execute a function when an element is clicked. ### Example ```javascript ``` In the simple example above, when a user clicks on the button they will see an alert in their browser showing `Button was clicked!`. ### Adding `onclick` dynamically The `onclick` event can also be programmatically added to any element using the following code in the following example: ```javascript

click on this element.

``` ### Note ### It's important to note that using onclick we can add just one listener function. If you want to add more, just use addEventListener(), which is the preferred way for adding events listener. In the above example, when a user clicks on the `paragraph` element in the `html`, they will see an alert showing `onclick Event triggered`. ### Preventing default action However if we attach `onclick` to links (HTML's `a` tag) we might want prevent default action to occur: ```javascript Guides ``` In the above example we prevented default behavior of `a` element (opening link) using `event.preventDefault()` inside our `onclick` callback function. MDN #### Other Resources jQuery .on() Event Handler Attachment