diff --git a/1-js/11-async/01-callbacks/article.md b/1-js/11-async/01-callbacks/article.md index 5950df0511..6c15a5a345 100644 --- a/1-js/11-async/01-callbacks/article.md +++ b/1-js/11-async/01-callbacks/article.md @@ -87,7 +87,7 @@ loadScript('/my/script.js', function() { }); ``` -That's the idea: the second argument is a function (usually anonymous) that runs when the action is completed. +That's the idea: the second argument is a function (usually anonymous) that runs when the action is completed. To understand `onload` read [Document and resource loading](/onload-onerror#loading-a-script). Here's a runnable example with a real script: