Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

sound


JQuery sound plugin

This JQuery sound plugin provides the utility to play the audio file in background without showing the player on UI and stop the running audio file.

Plugin soundPlay function is parameterized and you can pass different argument to initialize the player.
options:
url: Location of sound file
playerId: id of hidden player
command: play or stop what action is to be performed.

Following is the example to play and stop a sound file:-
First you need to include the jquery.sound.js plugin file.
Then bind the html elements to soundPlay function with specific command

$(document).ready(function() {
$('#playLink').click(function() {
$.fn.soundPlay({url: 'music/I_Like_It_I_Love_It.mid',
playerId: 'embed_player',
command: 'play'});
$("#sound_file_name").html("I_Like_It_I_Love_It.mid");
});
$('#stopLink').click(function() {

jlEmbed - A jQuery Plugin For Embedding Media

jlEmbed makes it easier to add embedded media players to your webpage. With support for Adobe Flash, Quicktime, Real Player, Silverlight, Windows Media Player, and YouTube, you will no longer have to hard-code HTML for your music or videos.

jlEmbed supports SWFObject, YouTube's Chromeless Video Player, and a full array of YouTube Javascript API functions.

There is also a built-in, customizable, MP3, SWF, FLV, YouTube audio player.

Additionally, you will not receive HTML validation errors from your Flash or other embedded media! jlEmbed helps keep your webpage validating properly while using embedded media players!

jlEmbed also includes basic plugin detection which kindly links visitors to the appropriate plugin download page when a required plugin is not detected.

Get the free plugin source from my website by following the "Try out a demonstration" link on this page. Embedding music or video on your webpage is a snap with jlEmbed!

BS Sound

Description:

With this plugin you will be able to add mp3 file to your page without any player. Just with custom button.
Just Make your link ( A Tag ) and target it to your mp3 file . Dont forget to set the proper ID for your link.

View Live Demo

Download BS Sound

Produced by : Behnam Soltanrezaey

SoundFX

jQuery SoundFX™ plugin

With this plugin you can give your buttons and elements more life.
You can now bind buttons and elements to mp3 sounds.

Please check out the demo; and give me some feedback.
Please don't forget to rate this plugin and request features for later release.

Tested and Works with
* Firefox 3.5
* IE 6.0 - 8.0
* Opera 9.64
* Safari 4.0

Non jQuery Requirements
* Flash 9+
* SWFobject 2.2
* MP3 Format

Code Example

variables:
fx = assigned number for sound fx
mu = mouse up {mu:'0' the number zero calls the first sound fx url}
md = mouse down{md:'0' the number zero calls the first sound fx url}
mh = mouse hover{mh:'0' the number zero calls the first sound fx url}
tm = timer {1.0 = one second & is optional & not for mouse events}
vl = volume {0.0 - 1.0 & is optional }

bind for buttons:
$('a').soundfx({
mu:'0',
md:'0',
mh:'0',
vl:'1'
});