Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to include html files like include in php?

How can we include files inside html, like how we usually include files in Php.

<?php include "nav.php";?>
like image 918
J Ramesh Fernandez Avatar asked Dec 19 '13 04:12

J Ramesh Fernandez


1 Answers

You can use jQuery:

HTML

<div id="container"></div>

jQuery

$("#container").load('somepage.html');

Learn more about the load function and what more you can do with it in the documentation.

like image 65
display-name-is-missing Avatar answered Sep 28 '22 04:09

display-name-is-missing