I'm trying to get off site content and display it on my web site.
I have site 1 and I want to display some content from site 2 on site 1.
My plan is to use AJAX, on site 1, to load a PHP script, on site 1, that will load the content from site 2 and echo it. Then AJAX would take the echo from the PHP script and display it in a DIV on site 1.
My question is...
Will all the other static content of site 1 wait for the PHP script to fully load and echo it's content before it loads?
OR
Will all the other static content of site 1 load initially, then when the PHP script is finished getting the content from site 2 AJAX will display it in the DIV?
This will all happen on page load.