Ok, I'm trying to use the treeview plugin.

lets start with the index.html script includes:
<code>
> <script type="text/javascript" src="jqueryUI/js/jquery-1.3.2.min.js"></script>
> <script type="text/javascript" 
> src="jqueryUI/js/jquery-ui-1.7.2.custom.min.js"></script>
> <script src="http://jqueryui.com/latest/ui/effects.core.js";></script>
> <script src="http://jqueryui.com/latest/ui/effects.transfer.js";></script>
> <script type="text/javascript" src="jqueryUI/js/jquery-nav.js"></script> <!-- 
> my crap -->
> <script language="JavaScript" type="text/javascript" 
> src="jqueryUI/js/jquery.treeview.js"></script>
</code>
my menu calls ajax and loads a php page that reads:
<code>
> <?php include "directoryFuncts.php"; ?>
> <link type="text/css" rel="stylesheet" href="jquery.treeview.css" />
> <script language="JavaScript" type="text/javascript" 
> src="jquery-1.3.2.min.js"></script>
> <script language="JavaScript" type="text/javascript" 
> src="jquery.treeview.js"></script>
> <script language="JavaScript" type="text/javascript">
> $(document).ready(function(){
>       $("#minutesTree").treeview();  <------- problem shows up here everytime 
> and I don't know why
> });
> </script>
> <h3>Minutes</h3>
> <ul id="minutesTree" class="filetree">
> <?php getDir( "minutes" ); ?>
> </ul>
</code>

I understand that this repeats a lot of junk but it's the only way I
can get it to even work by going to just the individual page and
bypassing the menu.

The list functions in php work perfectly and I get the correct html
ul's and li's out of it but all i get is:

Webpage error details

Message: Object doesn't support this property or method
Line: 257713399 *not sure why the line is so insanely high but
whatever*
Char: 2
Code: 0
URI: http://localhost/greekware8/

like the subject says I hope this isn't some really stupid mess up in
my part but this should've worked in a day's time of work.

Reply via email to