Draggable makes slideToggle misbehave
I have
-
- <script type="text/javascript">
- $(function() {
- $("div#sortable").sortable();
- $("div#sortable").disableSelection();
- });
- </script>
and Within one of the sortable divs, I have
-
- <script type="text/javascript">
- $(function() {
- $('div#sortable_itemt').click(function(){$('div#title_elements').slideToggle('slow');});
- });
- </script>
so each time the drag ocuures on an element of the sortables, the slideToggle starts to misbehave by reToggling each time it is toggled...wat do i do
thanks