Jquery UI in IE10
- by Coelho
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();