Chad
Chad

Reputation: 24689

What's the best way to reuse Javascript routines in VS2008?

Probably a dumb question, but is it still using "Include files"?

Upvotes: 0

Views: 53

Answers (1)

Andreas Grech
Andreas Grech

Reputation: 107940

Save them in a js file and include it wherever you need the functions, like :

<script src="myfunctions.js"></script>

Upvotes: 3

Related Questions