move content
move content
This is a very simple jquery move that has me stumped. With a source view one can click on both js scripts and see the path is right. I have tried different jquery & general.js scripts, initial.php is in the same folder.
http://www.lplc.co/cont.html
general.js
- $(document).ready(function() {
$('#content').load('initial.php');
});
$('a').click(function() {
var page = $(this).attr('href');
$("#content").load(page);
return false;
})