Skip to main content

Search and Top Navigation

#7596 closed bug (worksforme)

Opened August 02, 2011 09:20PM UTC

Closed October 27, 2012 08:25PM UTC

Draggable helper="clone" option causes cursor to lock in IE9

Reported by: aaroncat Owned by:
Priority: minor Milestone: 2.0.0
Component: ui.draggable Version: 1.8.14
Keywords: Cc:
Blocked by: Blocking:
Description

Using helper="clone" option with draggable function causes the cursor to "lock" until a subsequent click is made on the page. At this time the cursor returns to being reactive to things like hyperlinks and cursor settings in CSS.

Repro Steps:

Using the below markup/code in IE9...

1. Drag the 'Drag Me' element somewhere and release

2. Hover over the 'Press Here' link (notice the cursor has not changed from pointer)

3. Click somewhere on the page

4. Hover over the 'Press Here' link (notice the expected cursor is available)

<html>

<head>

<script src="jquery-1.5.1.min.js" type="text/javascript"></script>

<script src="jquery-ui-1.8.14.custom.min.js" type="text/javascript"></script>

<script>

$(document).ready(function () {

$("#draggable").draggable({

helper: "clone"

});

});

</script>

<style>

#draggable

{

width:100px;

height:70px;

background: silver;

}

</style>

</head>

<body>

<div><a href="http://www.google.com" target="_blank">Press Here</a></div>

<div id="draggable">Drag Me</div>

</body>

</html>

Attachments (0)
Change History (2)

Changed October 11, 2012 02:49PM UTC by scottgonzalez comment:1

milestone: 1.9.02.0.0

Changed October 27, 2012 08:25PM UTC by mikesherov comment:2

resolution: → worksforme
status: newclosed

Thanks for taking the time to contribute to the jQuery UI project! I can no longer reproduce the issue using the latest jQuery and jQuery UI. http://jsfiddle.net/U5Y5u/

If you can still reproduce it, please feel free to reply to this ticket with a test case showing the problem. Thanks!