Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Dale Jones
9,025 PointsDoes AJAX need to be run in the HTML file via <script> tags or can it be done with a separate JS file?
Like the question says, I thought that we should keep JS and HTML on separate files. So do we need to do it via HTML or should it be done via a separate JS file?
1 Answer
Bob Swaney
13,010 Pointsits really up to you, It can be run within a <script> tag on HTML. I personally like to keep all my JS and HTML separated into different files, even when making AJAX calls.