Bug Tracker

Ticket #2845 (assigned bug)

Opened 8 months ago

Last modified 4 months ago

Sortable that has OBJECT tag generates error in IE

Reported by: tokyotoejam Assigned to: paul (accepted)
Type: bug Priority: major
Milestone: 1.2.4 Component: ui
Version: 1.2.3 Keywords: sortable
Cc: Needs: Review

Description

I have group of Sortables divs. One of the divs has a simple OBJECT that imbeds a youtube video. In IE when I try to drag this div around, it generates an error at line 310 saying "Object doesn't support this property or method". When I remove the OBJECT Tag, I do not get an error so I am thinking that the sortables dont like the OBJECT tag in IE. (Other browsers work fine)

Attachments

Change History

Changed 7 months ago by paul

  • status changed from new to assigned

Changed 4 months ago by emartin24

Any updates on this? There was just another ticket opened for the same issue http://dev.jquery.com/ticket/3289.

The following is a simple example, which throws an error in IE6 & 7:

<script type='text/javascript'>
$(document).ready(function () {
	var clone = $('#videobox').clone(true);
});
</script>
<div id="videobox" style='display:none;'>
	<object width="425" height="355">
		<param name="movie" value="http://www.youtube.com/v/JikaHBDoV3k&hl=en"></param>
		<param name="wmode" value="transparent"></param>
		<embed src="http://www.youtube.com/v/JikaHBDoV3k&hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed>
	</object>
</div>
Note: See TracTickets for help on using tickets.