#3986 closed bug (fixed)
Draggable: disables dropdown (<select>) in Chrome & Safari
Reported by: | jsycamore | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.7 |
Component: | ui.draggable | Version: | 1.5.2 |
Keywords: | select chrome safari | Cc: | |
Blocked by: | Blocking: |
Description
Select elements contained within a draggable div do not work once the div is made draggable in Chrome & Safari. The code below works fine in IE and Firefox, but not in Chrome or Safari.
I also noticed that in Chrome at least, if the div CSS position property is set to "absolute" after draggable has been applied it becomes "relative". Not sure if related.
<html> <head> <script type='text/javascript' src="jquery.js"></script> <script type='text/javascript' src="jquery-ui.js"></script> <script type='text/javascript'>
$(function(){
$("#drag").draggable();
});
</script> </head> <body>
<div id=drag>
<select>
<option>one</option> <option>two</option> <option>three</option>
</select>
</div>
</body> </html>
Change History (3)
comment:1 Changed 14 years ago by
Milestone: | TBD → 1.6 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Fixed in 1.6.