new-core.html revision 24af57b8ae16a109f012057cf02c11258b6d8b4d
<!DOCTYPE HTML>
<html>
<body>
<button id="my-button" class="yui3-button">my button</button>
<script type="text/javascript">
YUI({
filter: 'raw'
}).use('button-core', function(Y) {
var button = Y.one('#my-button').plug(Y.Plugin.Button);
button.on('click', function(){
console.log('a');
});
});
</script>
</body>
</html>