Problem with droppable and FF

Problem with droppable and FF

Hello, I am creating a droppable component and has a very rare problem with FF i don't know why doesn't append the clone of the component to the droppable widget, and just dissapear the widget. here it's the code, of the draggable function and the droppable function 

Draggable: 
  1. function makeDrag(elmnt){
  2. $(elmnt).draggable({
  3. helper:'clone',
  4. cancel: null,
  5. scroll: true, 
  6. scrollSensitivity: 100
  7. });
  8. }
Droppable:

  1. function actvDrop(widget){
  2. $(function() {
  3. $("#"+widget.getAttribute('id')).droppable({
  4.             drop: function(event,ui){
  5. if ($(ui.draggable).attr('new') == 'true')
  6. {
  7. clone = $(ui.draggable).clone();
  8. $(clone).mouseover(function(event){
  9. showprp(this);
  10. });
  11. $(clone).attr('new', 'false');
  12. var clnumb = parseInt($(clone).attr('clone'));
  13. var newIndex = (clnumb+1);
  14. $(ui.draggable).attr('clone', newIndex);
  15. $(clone).attr('id', ((newIndex)+$(clone).attr('id').substring(1)));
  16. $(clone).css({position:'absolute', top:event.pageY, left:event.pageX});
  17. $(this).append(clone);
  18. makeDrag(clone);
  19. }else{
  20. $(ui.draggable).css({position:'absolute', top:event.pageY, left:event.pageX});
  21. $(this).append(ui.draggable);
  22. }
  23.             }
  24. });
  25. });
  26. }
Sincerly i need your help i don't know what do now