I have a sub folder named "images". I want to load all the file names from "images" folder into my html page using jQuery/JavaScript on a secure web site.
How can I do this?
I know how to do this for an unsecured site: How to load all the images from one of my folder into my web page, using Jquery/Javascript
EDITED: It's an https page. I can get the contents of a folder in an http page, but I get an '403 - Forbidden: Access is denied.' error for the folder in an https page. I have access to webserver. I use ASP.NET and tried to set permissions in web.config on the folder for all users. I want to get the list from the client side. The client script is executed through the same-origin policy. I use an ASP.NET web page (but I want to get the files through JavaScript/jQuery). I might use web services.