vote up 1 vote down star

In HTML, are the <script> elements allowed to be external and use <script src="myscript.js"> even when in the <body> of the document?

flag

1 Answer

vote up 8 vote down check

Yes. This is how a lot of widgets work like Google Maps. Make sure you specify the type though:

<script type="text/javascript" src="action.js"></script>
link|flag
I thought you should specify the type even for scripts in the head section. Or is it somehow special for scripts inside the body? – dasha salo May 29 at 5:56
1  
You should always specify the type :) – Matthew James Taylor May 29 at 5:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.