script async - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:script

Introduction

Executing a Script Asynchronously

Using the async Element

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
   <head> 
      <script async src="simple2.js"></script> 
   </head> 
   <body> 
      <p>
          I like 
         <code id="myId">HTML</code>
          and CSS. <!-- w ww . j  av a  2 s . c  om-->
      </p> 
      <a href="http://java2s.com">Visit java2s.com</a> 
      <a href="page2.html">Page 2</a>  
   </body>
</html>

Related Tutorials