Skip to content

Commit ae976c7

Browse files
wogslandRedWolves
authored andcommitted
events/event-basics.md: inserted missing semicolon into example code
Closes jquerygh-541
1 parent 483e237 commit ae976c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/events/event-basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Quite often elements in your application will be bound to multiple events. If mu
127127
$( "input" ).on(
128128
"click change", // Bind handlers for multiple events
129129
function() {
130-
console.log( "An input was clicked or changed!" )
130+
console.log( "An input was clicked or changed!" );
131131
}
132132
);
133133
```

0 commit comments

Comments
 (0)