We would like to know how to disable a Button.
<html> <body> <button onclick="this.disabled='true'; console.log(this.isDisabled);">Disable Me</button> </body> </html>
The code above is rendered as follows: