jQueryを使ってファイルツリーを表示できるライブラリ「jQuery File Tree」が
紹介されていたのでメモ
jQueryを使ってファイルツリーを表示できる『jQuery File Tree』 | IDEA*IDEA
これはかっこいいです
今度使ってみたい
実装も簡単
$(document).ready( function() {
$('#container_id').fileTree({ root: '/some/folder/' }, function(file) {
alert(file);
});
});
jQuery File Tree
紹介されていたのでメモ

jQueryを使ってファイルツリーを表示できる『jQuery File Tree』 | IDEA*IDEA
これはかっこいいです

今度使ってみたい

実装も簡単
$(document).ready( function() {
$('#container_id').fileTree({ root: '/some/folder/' }, function(file) {
alert(file);
});
});
jQuery File Tree