From d0a1b96b7c9d0d81c2ccf8bf5f72bc03e7f0a5c3 Mon Sep 17 00:00:00 2001 From: "Stanislav (Stanley) Modrak" <44023416+smith558@users.noreply.github.com> Date: Thu, 16 Jun 2022 16:31:05 +0100 Subject: [PATCH] Add a link for missing knowledge --- 1-js/11-async/01-callbacks/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: