Подскажите что не так в этом коде, если он работает в онлайн редакторе
http://plnkr.co/edit/?p=catalogue , но не работает на компе. Пробовал открывать в разных браузерах и редактировать в различных редакторах - не помогает. Что делать?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery UI</title>
<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="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.10.3/themes/sunny/jquery-ui.css">
<style type="text/css">
#draggable {font-size: x-large; border: thin solid black;
width: 5em; text-align: center; padding:10px}
</style>
<script type="text/javascript">
$(function() {
$('#draggable').draggable();
});
</script>
</head>
<body>
<div id="draggable" class="ui-widget ui-corner-all ui-state-error">
Перетащи меня
</div>
</body>
</html>