vahminator,
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>demo</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<style type='text/css'>
body {
font-family: Arial, sans-serif;
font-size: 0.8em;
}
h1 {
font-size: 1.2em;
text-align: center;
}
.wrapper {
width: 400px;
margin: 20px auto;
}
#block1, #block2, #block3 {
border: solid 1px #555555;
margin: 10px;
padding: 20px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
float: left;
min-width: 100px;
}
.textBlock {
border: solid 1px #333333;
font-weight: bold;
margin: 10px 0 5px 0;
padding: 10px;
text-align: center;
background-color: #eeeeee;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.dropHere {
background-color: #e7e7de;
}
.table_drop{
width: 400px;
}
</style>
<script type='text/javascript'>
$(window).load(function(){
$('#block1 .textBlock').draggable({
helper:'clone',
connectToSortable:"#block2"
});
$("#block2").sortable()
});
</script>
</head>
<body>
<div class="wrapper">
<div id="block1" class="bla1 connectedSortable">
<div class="textBlock ui-state-default">Блок 1</div>
<div class="textBlock ui-state-default">Блок 2</div>
<div class="textBlock ui-state-default">Блок 3</div>
<div class="textBlock ui-state-default">Блок 4</div>
<div class="textBlock ui-state-default">Блок 5</div>
<div class="textBlock ui-state-default">Блок 6</div>
</div>
<div id="block2" class="bla2"></div>
</div>
</body>
</html>