Coding just likes Art
This is the blog about the coding, the whole coding and nothing but the coding , so God would help me become a better developer.

JavaScript : Async

#JavaScript : Async
===============

<script async type="text/javascript" src="test.js" onload="test()"></script>

test.js will be execute as soon as its downloading is complete.

<script defer type="text/javascript" src="test.js" onload="test()"></script>

test.js will be execute in a import order of all the external javascript files.