Skip to content

Instantly share code, notes, and snippets.

@skoslitz
Created October 1, 2014 12:40
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 skoslitz/9d97a8b95e452daaa1cb to your computer and use it in GitHub Desktop.
Save skoslitz/9d97a8b95e452daaa1cb to your computer and use it in GitHub Desktop.
load json with JQuery
<script type="text/javascript">
var apiUrl = "http://localhost/yiiRest/basic/web/index.php/event/temporal"
$.ajax({
url: apiUrl,
dataType: 'json',
success: function(data){
console.log(data);
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment