Skip to content

Instantly share code, notes, and snippets.

@jpalala
Created October 7, 2014 09:55
Show Gist options
  • Save jpalala/2e5801c8f6281fb3bee1 to your computer and use it in GitHub Desktop.
Save jpalala/2e5801c8f6281fb3bee1 to your computer and use it in GitHub Desktop.
fun with Zepto.ajax()
//sample ajax call in page
(function($){
$.ajax({
type: 'GET',
url:'/posts',
dataType: 'json',
success: function(data) {
$.each(data, function(i, item) {
$('.container').append('<h2>' + data[i].title + '</h2>');
});
}
})
})(Zepto || jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment