I would like to know the best technique for loading a PHP page and insert into a section of a page using AJAX?
For example, consider the following HTML code:
<html>
<body>
<div id="web_Logo">
<h1>Website Logo</h1>
</div>
<div id="web_Menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="help.php">Help</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
<div id="web_Content">
//CONTENT LOADS HERE//
</div>
</body>
</html>
What would be the best way to load a page (help.php or contact.php for example) using AJAX into the contents Div section?
I am using the JQuery library for my site if that helps.