Skip to main content

Bug Tracker

Side navigation

#9489 closed bug (invalid)

Opened June 02, 2011 08:14AM UTC

Closed June 02, 2011 01:10PM UTC

Last modified June 03, 2011 04:35AM UTC

jquery append is not working with clone functionality in IE 7 and 8

Reported by: anonymous Owned by:
Priority: undecided Milestone: 1.next
Component: unfiled Version: 1.6.1
Keywords: Cc:
Blocked by: Blocking:
Description

Hi everyone,

following is my code which correctly appending on div "moodboardWrapper" for browser FF and google chrome but not in IE 7 and 8

$("#moodboardWrapper").droppable({

accept: '.itemWrapper',

tolerance: 'fit',

drop: function (event, ui) {

var clone = $(ui.helper).clone();

$("#moodboardWrapper").append(clone);

$("#moodboardWrapper .itemWrapper").addClass("item");

$(".item").removeClass("ui-draggable itemWrapper");

$(".item .mediaImage").addClass("itemResizable");

$(".item").draggableresizableSetup();

}

});

Attachments (0)
Change History (2)

Changed June 02, 2011 01:10PM UTC by addyosmani comment:1

resolution: → invalid
status: newclosed

Thanks for submitting a ticket to the jQuery Bug Tracker! Unfortunately we are unable to assist with issues related to jQuery UI. For assistance with your ticket, please resubmit it to the jQuery UI Bug Tracker where they'll be able to investigate it further.

Changed June 03, 2011 04:35AM UTC by anonymous comment:2

Replying to [comment:1 addyosmani]:

Thanks for submitting a ticket to the jQuery Bug Tracker! Unfortunately we are unable to assist with issues related to jQuery UI. For assistance with your ticket, please resubmit it to the jQuery UI Bug Tracker where they'll be able to investigate it further.

Well this pretty embarrassing without knowing the depth of example how could you say that this is the jQuery UI issue???

The actual issue is that after appending the image clone HTML to particular div it append correctly on browser FF, google chrome but not in IE

for more detail could you please check following line

var clone = $(ui.helper).clone(); $("#moodboardWrapper").append(clone);

It would be really appreciated if you check above line from you side