New to webdev.

I need to use the same menu on all the pages of new website i'm building but I'm not willing to edit the menu every time a change it in every file.

Is there a simple template engine for javascript or another solution to fix this issue?

link|improve this question
2  
This problem is usually solved by your web framework, though it's achievable via JavaScript, too. Are you using a web development framework? – cheeken Feb 14 at 11:47
possible duplicate of HTML code reuse – Quentin Feb 14 at 12:03
feedback

1 Answer

up vote 3 down vote accepted

If the menu is dynamically constructed via your website, then you're best bet is to use server-side templates.

In PHP you can do:

include("menu.php");

Wherever you need it to display.

In JavaScript, if you need to style the menu, then check out Mustache.JS or similar.

link|improve this answer
Thank you but at the moment I'm only able to use javascript, I don't have php support. – mg_ Feb 14 at 13:14
Then Mustache.JS is a good choice! – James Feb 14 at 13:46
feedback

Your Answer

 
or
required, but never shown

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