Add Sound to Flash-Like Button With jQuery -


i have made flashlike button jquery via code:

$(document).ready(function() {     $('#navigation li a').append('<span class="hover"></span>').each(function () {         var $span = $('span.hover', this).css('opacity', 0);         $(this).hover(function () {             $span.stop().fadeto(500, 1);           }, function () {     $span.stop().fadeto(500, 0);          });     }); }); 

but can add sound button in hover flash buttons? in advance

have @ jquery sound plugin here: http://dev.jquery.com/browser/trunk/plugins/sound/jquery.sound.js?rev=5750


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -