Opened 14 years ago

Closed 14 years ago

Last modified 12 years ago

#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 Scott González

Milestone: TBD1.6
Resolution: fixed
Status: newclosed

Fixed in 1.6.

comment:2 Changed 12 years ago by antsaia

This appears to be broken again in 1.8.11

comment:3 in reply to:  2 Changed 12 years ago by Scott González

Replying to antsaia:

This appears to be broken again in 1.8.11

Works fine for me in both browsers.

Note: See TracTickets for help on using tickets.