Reputation: 827
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
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