Cross Reference: new-core.html
xref
: /
yui3
/
src
/
button
/
tests
/
manual
/
new-core.html
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
new-core.html revision 24af57b8ae16a109f012057cf02c11258b6d8b4d
301
N/A
<!
DOCTYPE
HTML
>
301
N/A
<
html
>
301
N/A
<
body
>
301
N/A
<
button
id=
"my-button"
class=
"yui3-button"
>my button</
button
>
301
N/A
301
N/A
<
script
type=
"
text
/
javascript
"
src=
"/
build
/
yui
/
yui.js
"
></
script
>
301
N/A
<
script
type=
"
text
/
javascript
"
>
301
N/A
301
N/A
YUI({
301
N/A
filter: 'raw'
301
N/A
}).use('button-core', function(Y) {
301
N/A
301
N/A
var button =
Y.one
('#my-button').plug(
Y.Plugin.Button
);
301
N/A
301
N/A
button.on
('click', function(){
301
N/A
console.log
('a');
301
N/A
});
301
N/A
301
N/A
});
301
N/A
</
script
>
301
N/A
</
body
>
301
N/A
</
html
>