ドラッグ可能な Jquery UIを動作させようとしてきましたが、次のエラーが発生しました。修正方法がわかりません。
何か案は?
-編集-コードは次のとおりです。
<script>
jQuery(function() {
jQuery( "#draggable3" ).draggable({
containment: "#containment-wrapper",
cursor: "move",
scroll: false,
stop: function(e , ui) {
jQuery("#mottox").val($(this).position().left);
jQuery("#mottoy").val($(this).position().top);
}
});
});</script>