CSSHttpRequest

CSSHttpRequest (CHR) is a method for cross-domain AJAX using CSS for transport.

Similar to JavaScript, this works because CSS is not subject to the same-origin policy that affects XMLHttpRequest. Like JSONP, CSSHttpRequest is limited to making GET requests. Unlike JSONP, untrusted third-party JavaScript cannot execute in the context of the calling page.

Related Posts