Quote:
Originally posted by Chris
So you need to load a script from another server, and that results in an iframe which you'd rather not use. In other words you want to include the contents of a page from another server without using an iframe, right?
If you have the cooperation of the other server you could implement a javascript solution. Basically the script would output everything it normally prints inside of a document.write function and then you'd remotely include the javascript.
Or you can turn it into a web service and do a server side include -- which is really the best (but also most complicated) solution.