+1  A: 

Have you heard about origin access control? You can just set it in your .htaccess to allow XHR requests across domains.

Header Set Access-Control-Allow-Origin *

In which case, you don't need anything past your standard AJAX components.

Justin Johnson