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 :)