How to select all the elements inside the <body> tag to call jquery.load?
When using .load() I know that I can select a specific element from the called file using an identifier, for example:
$('#replacediv').load('loadme.htm #loaddiv'); What I would like is a selector that will get everything inside the BODY tag without having to place the div around all the content.
$('#replacediv').load('loadme.htm'); This does not work, for example:
$('#replacediv').load('loadme.htm body'); Thanks Brian
+4