Salve, vorrei sapere come poter racchiudere tutti i div draggabili dentro un altro div senza che possano essere spostati fuori

Codice PHP:
<script type="text/javascript">
// Take all the elements whatever you want to make Draggable.
var elements = [
'div1',
'div2',
'div3'
];
// Make all the items drag able by creating Draggable objects
window.onload = function() {
elements.each(
function(
item) {
new
Draggable(item, {});
}
);
}
</script>
qualche idea?