code.progysm.com

HTMLScriptElement

Hérite de HTMLElement

Description
	<script> tag

Propriété du prototype:
	boolean async
	string charset
	string crossOrigin
	boolean defer
	string src
	string text
	string type  (Habituellement: "text/javascript")

Exemple:
	var script = document.createElement('script');
	script.constructor === HTMLScriptElement

Liens:
	the script element in HTML5
	script