vote up 0 vote down star

I'm sorry for this very newbish question I'm not much given into web development. I've got this cool javascript on a .js file that we want to use at a small web site. (It's a script to run piclens on it).

Can anyone point me some directions on how to use the .js file? Or how to attach it to my html code. Ty :)

If you feel this is a traditional "please read the manual" i would be happy 2 but haven't been able to find out how to do it :(

flag

5 Answers

vote up 16 vote down check

Just include this line anywhere in your HTML page:

<script type="text/javascript" src="yourfile.js"></script>

Don't forget the closing tag as IE won't recongize it without a separate closing tag.

link|flag
In HTML the closing tag is required anyway. (In XHTML you can use empty element syntax if you use an XML content-type, but Appendix C "forbids" it for XHTML masquerading as HTML) – David Dorward Oct 14 '08 at 10:52
What I meant that even in XHTML, IE won't understand <script type="text/javascript" src="yourfile.js" /> – DrJokepu Oct 14 '08 at 11:09
As I said - Appendix C "forbids" that (and the page won't work at all in IE if you use an XML content-type). – David Dorward Oct 14 '08 at 11:44
vote up 6 vote down
<script type="text/javascript" src="myfile.js"></script>

Usually inserted in the <head> tag. After that, it depends wether or not your script need additional initialization or customisation to work.

link|flag
You are missing the (required) type attribute. – David Dorward Oct 14 '08 at 10:48
type="text/javascript" very important. – matt lohkamp Oct 14 '08 at 10:52
This required type is useless. First of all JS is the only scripting language accros all the browser (VBS is IE only and nearly dead). Then you sould rely on the MIME type sent by the server and not by the one written in the tag. – gizmo Oct 14 '08 at 10:55
If nothing else, specifying the type stops validators from outputting an error. Having lots of errors that you don't care about makes it harder to find errors you DO care about. – David Dorward Oct 14 '08 at 11:43
Insert before </body> improves performance, and also allows DOM queries when script loads. – eyelidlessness Oct 14 '08 at 16:45
show 1 more comment
vote up 6 vote down

See Using External ".js" Files to answer your specific question. Also suggest some tutorials, e.g.

link|flag
Avoid w3schools - they are full of errors. – David Dorward Oct 14 '08 at 10:52
vote up 1 vote down

Do a view source on this page.

link|flag
vote up 1 vote down

The specification

link|flag

Your Answer

Get an OpenID
or

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