Skip to content

Commit 7cfe831

Browse files
xfqarthurvr
authored andcommitted
javascript-101/running-code: lowercase attribute in example
Closes jquerygh-617
1 parent fe3ee95 commit 7cfe831

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/javascript-101/running-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The last option is to use the event handler attributes of HTML elements. This me
3131
```
3232
<!-- Inline code directly on HTML elements being clicked. -->
3333
<a href="javascript:alert( 'Hello World' );">Click Me!</a>
34-
<button onClick="alert( 'Good Bye World' );">Click Me Too!</button>
34+
<button onclick="alert( 'Good Bye World' );">Click Me Too!</button>
3535
```
3636

3737
### Placement

0 commit comments

Comments
 (0)