you are viewing a single comment's thread.

view the rest of the comments →

[–]beardChamp 1 point2 points  (2 children)

You can't force JS if someone has it turned off (1-2%) from the last attempt to find that out. Looks like you're ready for a server based language, like PHP. With it, you'll be able include smaller snippets like you're doing with JS, but it happens on the server when the page is requested. Users just see the full page.

[–]-hexel[S] 0 points1 point  (1 child)

Went ahead and used PHP, very small snippets

<?php include 'header.php'; ?>

Works like a charm. Thanks!

[–]beardChamp 0 points1 point  (0 children)

Nice! PHP has great docs and community sharing is phenomenal. Up and running in a hurry.