Hello! There was a question: let's say from another site, by referring to www.example.com/example, the object {"x": 3} is given. Is it really impossible to get this object using javascript without authorization and dancing with tambourines? Why, just by following the link, I calmly see this object, but I cannot pull it into my script and work with it? There is a feeling that I do not understand something.
I tried this:
var x = new XMLHttpRequest(); x.open('GET', 'https://example.com/example'); alert( x.responseText ); How far am I from the truth?
JSONPto frames and so on. Google it! - user207618