[Proto-Scripty] Re: Drag and Drop with overflow auto

2008-11-10 Thread bazikch
Hi, It smells like your element is not correctly extended. IE doesn't let you modify the element's _prototype_. You can find the explanation here (last section): http://www.prototypejs.org/learn/extensions Hope this help. On Nov 7, 11:43 am, Haraldo [EMAIL PROTECTED] wrote: Hi there, I

[Proto-Scripty] Re: How to get size of div before showing?

2009-07-02 Thread bazikch
In CSS any element styled with display:none; has no sizes because he's no more in the document flow. What you can do is positionning the element ouside the viewport, ie. top: 0; left: -1000px, update it throught AJAX, get the right sizes and then position it where you want. HTH On Jul 1, 3:16