Drag and drop a link in IE7

Drag and drop a link in IE7

Hi,

Im having the exact same problem as posted here:  http://dev.jqueryui.com/ticket/4123

When I drag my link to my droppable area, an ajax request is supposed to triggred, but it seems like the whole page is beeing reloaded. This works fine with Chrome and Firefox. It works in IE if I have insert an alert in the drop function.

Does anyone have a workaround for this?

Im including the drop code I have:
  1. $('.droppable').droppable({
  2.         drop: function(ev, ui) {
  3.             var intSourceObjectType = ui.draggable.attr('objecttype');
  4.             var intSourceObjectId = ui.draggable.attr('objectid');

  5.             var intTargetObjectType = $(this).attr('objecttype');
  6.             var intTargetObjectId = $(this).attr('objectid');
  7.             var strAction = $(this).attr('action');

  8.             if (strAction == "createlink") {
  9.                 CreateLink(intSourceObjectType, intSourceObjectId, intTargetObjectType, intTargetObjectId);
  10.             }
  11.         }
  12.     });