Надеюсь, это подойдет:
JQuery
<script type="text/javascript">
$(document).ready( function() {
$("#clickme").click(function() {
$("#makethisresizable").resizable();
});
});
</script>
CSS
<style type="text/css">
#makethisresizable {
width: 100px;
height: 100px;
background: blue;
color: white;
}
</style>
HTML
<div id="clickme">Click me</div>
<div id="makethisresizable">Make this resizable</div>