Display directory and its all sub directories in treeview using jquery -


need display directory , sub directories in treeview using jquery . display name directory name/file name , on click of ite open file

 $.ajax({             url: "./files/",             success: function (data) {                  $(data).each(function () {               },             error: function (jqxhr, textstatus, errorthrown) {                 //alert("error");                  alert(errorthrown);                 alert(jqxhr.responsetext);             }         }); 

the problem ihave itrate success values.


Comments

Popular posts from this blog

javascript - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -