javascript - How do I display a gallery using all images in a specific folder without using PHP or SQL? -
i want make simple.
i place in image in folder, then, automatically added in gallery hit refresh.
i'm not quite sure if possible in javascript/jquery.
edit: plug-in suffice neatly.
right there new feature in html5 upcoming it's not quiet supported yet browsers:
see article: http://www.html5rocks.com/en/tutorials/file/dndfiles/
if want show page in internetexplorer can access filesystemobject
var fso = new activexobject("scripting.filesystemobject"); (a feature available in firefox purpose removed entirely since version 17 ..)
in general every way access file system via javascript out of webbrowser illegal definition (no matter if technologies give possibility somehow) because it's intended run sandboxed. don't expect find simple solution ...
Comments
Post a Comment