I am trying to build a file tree structure using jquery.I came across this link
http://www.abeautifulsite.net/blog/2008/03/jquery-file-tree/
So i tried to use it.Below is the html source code of my file.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script src="js/jquery-1.7.2.js" type="text/javascript"></script>
<script src="js/jquery.easing.js" type="text/javascript"></script>
<script src="js/jqueryFileTree.js" type="text/javascript"></script>
<link href="css/jqueryFileTree.css" rel="stylesheet" type="text/css"
media="screen" />
<script type="text/javascript">
$(document).ready( function() {
$('#container_id').fileTree({ root: '/some/folder/' }, function(file) {
alert(file);
});
});
</script>
</head>
<body>
<div id="container_id"></div>
</body>
</html>
But when I open this page in a browser it shows a blank page.Nothing appears.Am I missing something?Please help.Thnx in advance.
Note:All the src of script tags are correct.