Skip to content

Instantly share code, notes, and snippets.

@oguzcanhuner
Created January 19, 2014 17:14
Show Gist options
  • Save oguzcanhuner/8507814 to your computer and use it in GitHub Desktop.
Save oguzcanhuner/8507814 to your computer and use it in GitHub Desktop.
var increment = 1;
var getPosts = function(i){
url = "posts/" + i + ".html";
$.ajax({
url: url,
type: "GET",
success:function(data){
$('#posts').append("<p class='post'>"+data+"</p>");
increment++;
getPosts(increment);
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment