Jquery UI in IE10
Posted
by
Coelho
on Stack Overflow
See other posts from Stack Overflow
or by Coelho
Published on 2013-10-30T03:41:01Z
Indexed on
2013/10/30
3:54 UTC
Read the original article
Hit count: 120
I have this code on my system, and it works very well in all "real browsers", but now I need put this working on IE10.
Because this development is inside a CMS I can't do upgrade on Jquery or UI. The $ version is 1.3.2 an UI version is 1.7.3.
In IE I don't receive any message of error. And the Items with a class = "container myDevelopment" aren't sortables.
Some one know what it's doesn't work?
$(".container.myDevelopment").sortable({
connectWith: ".container.myDevelopment",
receive: function (event, ui) {
var issuecode = ui.item.attr("id");
var issueStatus = this.getAttribute("data-status");
alert("it's works");
}
}).disableSelection();
© Stack Overflow or respective owner