Tag: button
-
Running a JS function with an HTML button
This short tutorial shows how to run a function written in JavaScript when a button is pressed. The Code How the code works The HTML code has three tags: The JavaScript code defines one function, called buttonClick. The function contains a single line of code, which is run when the button is pressed. The function…