Could you create a test page and attach to a new ticket here? http://dev.jqueryui.com/newticket (note: requires registration)
Thanks. - Richard On Wed, Aug 26, 2009 at 2:47 AM, B3nitro <[email protected]> wrote: > > Hi, > > I'm new with jQuery and javascript framework in general, I've a > "little" problem with the the sortable plugin. > > The code of my page looks like this : > <html> > <body> > <div id="container"> > <!-- Some divs --> > <div class="menu">Normal content</div> > <!-- Bugs is here... --> > <div class="comment"> > <div class="date"><script type="text/ > javascript">document.write(date('d/m/Y à g:i a',1251265362));</ > script></div> > <div class="content">Some text</div> > </div> > <!-- ... --> > <div class="footer">Normal content</div> > </div> > </body> > <script type="text/javascript"> > $(document).ready(function() > { > $("#container").sortable({ cursor: 'crosshair', containment: 'parent', > opacity: 0.6, scroll: true }); > }); > </script> > </html> > > All div class=comment make crash the browser on "dropping" them (drag > work), others div's like menu and footer works well. > > Do you have an idea to make div with js inside sortable ? > > Thanks in advance :) >

