IE8、要素を並べ替えた後に jQuery.sub を実行すると、スタック オーバーフローが発生します。
これはIE8のバグですか?
Javascript:
jQuery('.wrapper').sortable({
placeholder: "ui-state-highlight",
axis: "y",
opacity: 0.5
});
jQuery('.wrapper').bind('sortupdate', function() {
$('#result').text('finish');
var foo = jQuery.sub();
});
HTML:
<div class="wrapper">
<div id="box1" class="box"></div>
<div id="box2" class="box"></div>
<div id="box3" class="box"></div>
<div id="box4" class="box"></div>
</div>
<div id="result"></div>