<html>
<head>
<title>Resize Manual Test</title>
<style>
#resize{
position: relative;
width:100px;
height:100px;
background-color:#abc;
}
</style>
<body class="yui3-skin-sam">
<div id="resize">Resize me</div>
<script>
YUI({filter: 'raw'},{ skin: 'sam' }).use('resize', function(Y) {
var resize = new Y.Resize({
//Selector of the node to resize
node: '#resize'
});
});
</script>
</body>
</html>