$(document).ready(function() { $(".enLecture").hide(); $(".article ol.soundtrack li a").click(function (e) { e.preventDefault(); jwplayer().stop(); var mp3 = $(this).attr('href'); var player = $(this).attr('rel'); var titre = $(this).text(); //alert("mp3:"+ mp3); //alert("player:"+ player); //alert("titre:"+ titre); jwplayer("player"+ player).load({file: mp3}) $(".enLecture").hide(); $("#enLecture"+ player +" span").html(titre); $("#enLecture"+ player).show(); }); });