Reputation: 5193
I know this has been discussed many times so far, but I can't make it work :/ what am I doing wrong? Target page, when opened standalone, works correctly. Take a look at the screenshot:
Blurred IP is the same everywhere Response is empty
Upvotes: 0
Views: 619
Reputation: 337626
You are falling foul of the Same Origin Policy.
If you must cross domains (which going from HTTP -> HTTPS is counted as) you need to make a JSONP
request.
Upvotes: 1