resize.html revision 132071043437e241d6e56b435e6ee010de2f3e9d
<html>
<head>
<title>Resize Manual Test</title>
<style>
</style>
<body class="yui3-skin-sam">
<div id="resize" style="width:100px; height:100px; background-color:#abc;">hello</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>