Hi all,
Question regarding different AJAX "web-scraping" techniques. Basically, I have
a main site
with two parts 1) Search Box , 2) Results Box. I'm looking for the most
manageable way to
propagate each of those to "partner" sites and have them still function
properly.
Currently, I have a solution that kinda sorta works, but it involves having
PART 1 statically
on the partner's server itself. My preference would be to have code that is
then able to
actually retrieve PART 1 from the site and have it fully functional (with all of
it's own
JavaScript glory) and have it correctly work with the local PROXY.PHP file.
Please correct my logic where wrong, but my thoughts are as follows:
<DIV1>
when this div loads, have it retrieve the SEARCH BOX and draw it in with all
code in
tact to control DIV 2 (so that it can be controlled at the server)
</DIV1>
<DIV2>
wholly controlled by DIV1
</DIV2>
Thanks!