YUI().use('io-base', 'node', 'gallery-yuisand', function(Y) {
Y.one('#sort').on('click', function(e) {
Y.on('io:complete', function( id, data ) {
Y.one('#sorting').append( data.responseText );
new Y.YUISand();
});
var request = Y.io( 'io/example5_destination.html' );
e.preventDefault();
})
})