Hi, I'm trying to use Fx.Slide within a Class I'm creating, yet it keeps throwing errors. It doesn't seem to want to attach the Slide to the element I'm passing it. The class is initialized on domready, and yes, mootools-more is included. The js is below, and the html is very simple and I'm sure that's not it.
One last note: everything was working fine until I moved the code into a Class, as seen below: var Store = new Class({ Implements: [Options, Events ], // <-- am I missing something here, or is it elsewhere in my code? initialize: function(){ var $('detailedview'); // this works fine var mySlide = new Fx.Slide('detailedview').hide(); // Error: Result of expression 'document.id(a)' [null] is not an object. $('detailedview').slide('hide'); // try the native way as well, but it fails too. ..... If this is discussed elsewhere, I apologize. Please point me to a previous post and I'll be happy to read up. I wasn't able to find anything in my search. thanks!