Wednesday 31 October 2018

jquery - JSON Javascript, parse URL

I'm new to JavaScript, and trying to get a JSON object to post on my website. However, I can't get a success response. Since I don't have a proper debugger, I don't see error messages.



This is my code so far, I've read that it could be a security problem and I should look for JSONP, but I haven't found any proper examples to understand it.



Test0






So my question is, why don't I get a response?

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...