Posts

Showing posts with the label Audio Player

HTML 5 Audio Player

Simple Player is a jQuery plugin that allows users to control audio files on their webpage. All browsers that supports HTML5 audio tag that allow mp3 or ogg format supported by this plugin.  There is no need to use flash (load flash plugin consumes much more memory extra) in some cases if you want to play a simple audio file.  Usage The jquery.simpleplayer.min.js file should be added to the head section of the HTML file after the jQuery JavaScript file. Below is how to include the JavaScript file using an absolute path, relative to the server root. <head>     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>     <script type="text/javascript" src="/jquery.simpleplayer.min.js"></script> </head> Then you should include the simpleplayer.css into your html. <link rel="stylesheet" href="simpleplayer.css" type=...