how to make, when first div drags, second div drag too
first div drags with jquery ui
<div id="draggable" style="position: absolute; z-index: 999; width: 100px; height: 100px; background: orange;"></div>
<div id="xren" style="position: absolute; z-index: 998; width: 100px; height: 100px; background: orange;"></div>
<script type="text/javascript">
var a = $('#draggable').offset();
$('#xren').css("top", a.top + 100 + "px");
$('#xren').css("left", a.left + 100 + "px");
but it does not work

first div drags with jquery ui & second div drags when first div drags