I am attempting to shift a neighboring element after resizing a text area, triggered by the stop event on jqueryUI's resizable feature:
$("textarea").resizable({
stop: function (event, ui) {
var x = ui.originalElement.closest("li").find(".targettomove");
if (x !== null) {
var y = ui.originalElement.width() + 70;
$(x).css({ right: -y + "px" });
}
}
});
While this code functions correctly in Firefox 22, it fails to work in IE 10. It appears that the issue lies in the application of the css property for the right attribute. Upon inspection, it seems that the attribute remains unchanged.