node.html revision 73857faca3d4266c7840cd6ce428a71cf9a94d0c
<html>
<head>
<title>Node</title>
<style>
#foo {
display:none;
padding:20px;
}
</style>
</head>
<body>
<div id="foo">
<div id="bar">bar</div>
</div>
<script type="text/javascript">
YUI({filter:'debug'}).use('node', function(Y) {
var node = Y.Node.create('foo bar');
alert(node.get('text'));
});
</script>
</body>
</html>