Ashni Goyal
Ashni Goyal

Reputation: 827

Cross domain requests using javascript

Is it possible to make javascript based web proxy, where the url entered by the user is fetched by the javascript directly without going to the proxy server ?

Upvotes: 0

Views: 120

Answers (1)

epascarello
epascarello

Reputation: 207511

You are not going to be doing it with pure JavaScript unless the JavaScript happens to be running on the server.

You can use a service like Yahoo Pipes and get the page via a JSONP call.

Upvotes: 1

Related Questions