Displaying 2 results from an estimated 2 matches for "treewrapp".
Did you mean:
  treewrapper
  
2005 Aug 30
0
content slide in out / simple toggle of content
...The best example of what I want is shauninman.com (the nav/search)
I intend to have a sidebar and an expandable horizontal tab both of 
which can be toogled in and out of place.
for example the sidebar (which will contain a tree menu (like windows 
explorer))
Mark Up
---
        <div id="treeWrapper">
        <div id="tree">
            <div id="treeMenu">
                <p>tree</p>
            </div>
            <div id="treeToggle">
                <a href="javascript:;">Navigate/Search</a>...
2005 Sep 01
1
moveby with callback
...set the value of a variable when the effect is finished
currently I have an options object that I am passing to the moveby 
effect - with no joy, it does not work
I am sure that this is possible though I have not found it on the 
documentation
code sample below:
        var menu = $(''treeWrapper'');
        var opt = 
{onComplete:function(request){tweeing=false;alert("tween off");}};
        new Effect.MoveBy(menu, 0, 225, opt);
        $(''ctrl'').innerHTML = "Hide demo panel<br />" + "<a 
href=\"javascript:toggleTree2();\...