I\'m using jQuery and trying to load the body from an external HTML file.
It works if I try to load some div:
div
$(\'body\').load(\'example.h
If you want to load the whole body, $('body').load('example.html'); should be enough.
$('body').load('example.html');
If not, could you explain why ?
Anyway, the solution provided by Steve is the right one.