We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe3ee95 commit 7cfe831Copy full SHA for 7cfe831
page/javascript-101/running-code.md
@@ -31,7 +31,7 @@ The last option is to use the event handler attributes of HTML elements. This me
31
```
32
<!-- Inline code directly on HTML elements being clicked. -->
33
<a href="javascript:alert( 'Hello World' );">Click Me!</a>
34
-<button onClick="alert( 'Good Bye World' );">Click Me Too!</button>
+<button onclick="alert( 'Good Bye World' );">Click Me Too!</button>
35
36
37
### Placement
0 commit comments