Simple Sound Demo

Plays a sounds when the button is pressed


//create boing sound and button
var button = new sb.element({
        tag : 'button',
        innerHTML : 'get sprung',
        onclick : function(){
                new sb.sound({url : '/media/sounds/boing.mp3'}).play();
        }
}).appendTo('#instructions');