#9489 closed bug (invalid)
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();
}
});
Change History (2)
comment:1 follow-up: 2 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 Changed 12 years ago by
Replying to 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
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.