I need to load an external webpage into a div. I don\'t want to use an iFrame. And I want this done with plain Javascript. I\'m not sure how to go about it.
Whichever method you have, in js, try this instead : $('#myid').load('mylink.com')
$('#myid').load('mylink.com')
I know only this in js.