image.html revision 08cdb1908c8c2ebede750bd310cba3a96593b21d
<!DOCTYPE html>
<html>
<head>
<script>
YUI({
base: '/build/',
debug: true,
combo: false,
filter: 'raw'
}).use('button', function(Y){
new Y.Button({
srcNode: '#image-button',
type: 'toggle'
})
});
</script>
<style>
.yui3-button{
padding:20px;
}
.yui3-button-selected {
background-color:#426FD9;
color:white;
}
</style>
</head>
<body>
<h1>Button Example: Image</h1>
<input type='image' id='image-button' value='asd' src="http://yuilibrary.com/img/yui-logo.png"></input>
</body>
</html>