Last active
April 13, 2016 10:42
-
-
Save MacDada/d922ee16f0f06e6cba8a3cf3b0717f69 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<script async src="test.js"></script> | |
<script> | |
helloFromTestJs('ok'); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function helloFromTestJs(param) { | |
alert('hello from js: ' + param); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment