Загрузку модуля присутствует, но почему-то пишет, что функция не найдена. Как исправить??
<table id="tablloci">
<tr>
<td colspan="2">
<input class="nwloci" type="text" value="" placeholder="" title="">
</td>
</tr>
<tr class="sortable"><td>1</td><td><input class="point" type="text" value="sad1"><span class="idpoint">1</span></td></tr>
<tr class="sortable"><td>2</td><td><input class="point" type="text" value="sad2"><span class="idpoint">1</span></td></tr>
</table>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//ajax.aspnetcdn.com/ajax/jquery.ui/1.10.3/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.ui/1.10.3/themes/sunny/jquery-ui.css">
<script>
$(function () {
$('#tablloci').sortable({
items: "td",
placeholder: '.sortable'
});
$('#tablloci').disableSelection();
});
</script>