<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.3.js"></script>
<script src="jquery.ui.all.js"></script>
<script>
$(document).ready(function() {
$("#aaa").resizable().draggable();
});
</script>
<style>
#aaa {
width: 100px;
height: 100px;
background-color: lightblue;
border: 1px solid black;
}
</style>
</head>
<body>
<div id="aaa">bbb</a>
</body>
</html>