i want t get the number of files in a folder. there are many images in my folder i want to count there numbers is there any way to do that using jquery or javascript ? Thank
I didn't tried yet, but could be like this.
$.ajax({ url: "/images-folder-on-server/", success: function (data) { var image_count = $(data).length(); } });