en.javascript.info/2-ui/3-event-details/11-onload-onerror/3-script-callback/source.view/index.html
Ilya Kantor 87bf53d076 update
2014-11-16 01:40:20 +03:00

21 lines
226 B
HTML
Executable file

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
function addScript(src, callback) {
/* ваш код */
}
addScript("go.js", function() {
go();
});
</script>
</body>
</html>