I am trying to download data from a specific URL within a web page (specifically, a Google API). The issue is that the API only returns JSON data and I need to use "jsonp" for cross-domain access. However, when making a "jsonp" request, I encounter an error: "Uncaught SyntaxError: Unexpected token :".
While I could set up a backend server as a proxy, I'm wondering if there is a client-side solution to this problem. Any ideas?