Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JamesDBartlett3/83840913fb0f89aea000fd3b8ad16153 to your computer and use it in GitHub Desktop.
Save JamesDBartlett3/83840913fb0f89aea000fd3b8ad16153 to your computer and use it in GitHub Desktop.
Ajax Folder Enumeration
// Source: https://stackoverflow.com/a/11213851
$.ajax({
url: "YOUR FOLDER",
success: function(data){
$(data).find("a:contains(.jpg)").each(function(){
// will loop through
var images = $(this).attr("href");
$('<p></p>').html(images).appendTo('a div of your choice')
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment