Skip to content

Instantly share code, notes, and snippets.

@ShapeLayer
Created November 14, 2018 13:22
Show Gist options
  • Save ShapeLayer/905867d8b08c47040b2d752d4771326f to your computer and use it in GitHub Desktop.
Save ShapeLayer/905867d8b08c47040b2d752d4771326f to your computer and use it in GitHub Desktop.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button id="clickme"></button>
<script>
$('#clickme').click(function () {
$.ajax({
url: 'https://kpjhg0124.github.io/rise/assets/contents.json',
type: "POST",
dataType: 'json',
success: function (data) {
alert(data);
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment