У меня выглядит подключение библиотек так:
<head lang="en">
<meta charset="UTF-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script type='text/javascript' src="JQ.js"></script>
<title>Photo</title>
</head>
<body>
<div id="pic">
<img src="Pic/1.JPG" alt="Prado" width="120">
</div>
</body>
Сам код для JQ простой:
$(document).ready(function(){
$('#pic').draggable();
});
Ну почему он не работает? Подскажите пожалуйста!