<html>
<head>
<style>
html, body {
padding:0;
margin:0;
}
.yui3-widget-content {
background-color:#ccc;
border:1px solid green;
}
</style>
</head>
<body>
<button id="btn" type="button">Toggle</button>
<div id="widget">
My Widget Content
</div>
<script>
YUI({filter:"raw"}).use("anim", "widget-anim", "widget", function(Y) {
var w = new Y.Widget({
srcNode:"#widget",
visible:true,
height:"200px",
width:"200px",
render:true
});
Y.Node.one("#btn").on("click", function() {
});
});
</script>
</body>
</html>