I'd image you could use something like this:
Code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$.ajax({
url: "view-source:http://www.custom-anything.com"
,dataType: "text"
,success: function(data){
$("#div").text(data);
}
,error: function(xhr,erstr){ alert(erstr); }
});
});
</script>
, though it doesn't work in present form (I get an error about a non-functional http protocol handler). I'll keep tinkering with it, though there are others here who know more about javascript.
Edit:
This can be done from php (and other server-side languages), but with js, you may be stuck behind the same-domain rule.
(although, at present, I can't get it to work at all.)
Bookmarks