Settings

Theme

Ask HN: Include JavaScript via PHP or HTML?

3 points by clusterfu_k 16 years ago · 7 comments · 1 min read


So in my regular website building duties I have noticed that including the text of my javascript file renders the page faster than if the javascript file was merely include via html.

(In PHP)

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

v.s.

<script type="text/javascript"><?php require_once("stuff.js");?></script>

Is there any downside to me including the file via php?

there 16 years ago

the only downside would be if you are reusing the same javascript code on another page, this would cause the browser to download it again each time. if it's in a separate js file, the browser will (probably) cache it and make for a shorter download of each subsequent page.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection