pub/sub
by Ronny
HTML
<script src="https://github.com/phiggins42/bloody-jquery-plugins/raw/master/pubsub.js"></script>
<audio preload="auto" id="sound" class="editable" controls>
<source src="http://freshly-ground.com/misc/music/20060826%20-%20Armstrong.mp3"></source>
</audio>
<input type="range" id="volume" min="0" max="1" step="0.01">
JavaScript
$('#volume').change(function(ev){
$.publish('/player/volume', [ev.target.value]);
});
// player
$.subscribe('/player/volume', function(newVolume){
$('#sound')[0].volume = newVolume;
});
// volume bar
$.subscribe('/player/volume', function(newVolume){
$('#volume').val(newVolume);
});