document.addEvent("domready", function() {
   $('myform').slide('hide');
   $('mybutton').addEvent('click', function(e) {
      e.stop();
      $('myform').slide('in');
   });
});


On Mar 15, 10:03 am, Todd <[email protected]> wrote:
> Hi,
>
> New user so bear with me. I have a menu button that when clicked
> vertically slides in a small form. It works great except for one
> thing: I need the form to be initially hidden on page load and I have
> so far been unable to find a way to hide it without breaking the
> effect. Is this possible or is there a better way to achieve the same
> result using a different effect?
>
> Thanks,
>
> Todd

Reply via email to