Some comments: - Don't use display: none in your css class, use visibility: hidden instead. You have to do this because you can't set the position of an element with display:none. - Don't use window.onload with MochiKit. Use addLoadEvent, or better connect(window, 'onload'). - I think event.mouse().page is better suited to what you want to do - After a few tests, it seems you may have to set some positions to absolute to prevent some side effects.
Good luck :) -- Thomas --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MochiKit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/mochikit -~----------~----~----~----~------~----~------~--~---
