Skip to content

Instantly share code, notes, and snippets.

@zkwsk
Created April 30, 2017 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zkwsk/c626b50b20842cbc07dd7ee9f1e61b3f to your computer and use it in GitHub Desktop.
Save zkwsk/c626b50b20842cbc07dd7ee9f1e61b3f to your computer and use it in GitHub Desktop.
rmmLGr
// https://jsonplaceholder.typicode.com/
var root = 'https://jsonplaceholder.typicode.com';
$.ajax({
url: root + '/comments/1/comments',
method: 'GET'
}).then(function(data) {
console.log(data);
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment