Opened 12 years ago
Closed 10 years ago
#7596 closed bug (worksforme)
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...
- Drag the 'Drag Me' element somewhere and release
- Hover over the 'Press Here' link (notice the cursor has not changed from pointer)
- Click somewhere on the page
- 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>
Change History (2)
comment:1 Changed 10 years ago by
Milestone: | 1.9.0 → 2.0.0 |
---|
comment:2 Changed 10 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
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!