I am new to HTML. I have an html page named "main.html" and i want to include another html page called "menu.html" in it. My main.html page doesn't include frames and it is designed using div tags. My site is hosted on linux based server The site I have to redesign is Java questions.
|
|
|
|||
|
|
|
You want to look at Server Side Includes (SSI). This tutorial by Apache should get you up and running if that site is running on Apache. There are plenty of Server Side ways of doing this, but all except SSI require the use of a language other than HTML. If you're using IIS, you can check out Microsoft's writeup on Server Side Includes. |
||||||||||
|
|
|
Check out server side includes. |
||||
|
|
|
You should use server-side includes.
i.e. in jsp you can use: |
||
|
|
|
|
You can make an ajax call in javascript if you want to avoid using the server. In JQuery you would do:
|
||
|
|
|
|
Or use PHP for the future :) |
||
|
|
|
|
I think that PHP is the easiest way to do this. Most of the time you can just change your main.html file to main.php then add this php code where you want the menu bar:
And that's it! You have to make sure that php is installed on your sever. Also this will ONLY work on a server. So if you are testing on your computer and using something like dreamweaver (or even a browser), you won't see anything until it's online. |
||
|
|
