A jQuery music player that let's you do everything you can with a flash music player, but controlled through javascript. Thus, allowing freedom to skin the player through HTML/CSS. It is built on top of SoundManager2 by Scott Schiller.
NOTE: All the dependencies are included the project tree.
-
First we must include SoundManager2:
<script src="/path/to/soundmanager2.js" type="text/javascript"></script>
If the SoundManager2 swf file is in another directory, you have so include code to point SoundManager2 in the right direction (more documentation here:
<script type="text/javascript">
soundManager.url = '/path/to/swf/'
</script>
-
Include the jQuery libraries
<script src="/path/to/jquery.js" type="text/javascript"></script> <script src="/path/to/jquery.ui.js" type="text/javascript"></script> -
Inside your HTML page, you need a certain structure for you player. An example is provided in
examples/
INCOMPLETE
Coming soon.
This library is released under the GPLv3 license.