Thanks Mike, I appreciate your help
On May 10, 8:55 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > It's fairly common for a syntax error message to give you the correct > location of the error but not tell you what the actual error really is. In > this case, it's missing {}. > > ... > $j("#example").treeview({ > collapsed: true > }); > ... > > -Mike > > > Hello, I have just downloaded thetreeviewplugin and it > > looks like fine > > > var $j = jQuery.noConflict(); > > $j(document).ready(function(){ > > $j("#example").treeview(); > > }); > > > but when I try to load the tree with some options > > > var $j = jQuery.noConflict(); > > $j(document).ready(function(){ > > $j("#example").treeview( > > collapsed: true > > ); > > }); > > > I have the error below: > > > missing ) after argument list > > [Break on this error] collapsed: true\n > > > but I don't see any missing ) > > > Where am I wrong ??? > > > Moreover. is there a option list available somewhere online ?