phpbb logo

WebMinster Development

It is currently Thu Sep 09, 2010 6:31 am

All times are UTC




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: JQuery script to automatically replace .mp3 links
PostPosted: Thu Jul 01, 2010 6:35 am 
Offline

Joined: Thu Jul 01, 2010 6:24 am
Posts: 1
I searched around on the internet for a JQuery Plugin that would simply replace <A HREF="something.mp3">something</A> with a Flash based plug-in. The plug-ins I found all used an empty <div> and a playlist.

I logic being that if the visitor doesn't have javascript, they can still download and play the song. Plus, in most cases, it's easier for CMS users to create a link to an MP3 as opposed to an empty <DIV>

With WebMinster I was able to write the following JQuery script with worked great:

You'll need to include the JQuery main script (http://jquery.com/) and change:

/webplayer/webplayer.swf

To the location of your webplayer.swf

Code:
// replace all .mp3 href's with an mp3 player
$(document).ready(function(){
   $("a[href*='.mp3']").each(function(index){
      url=$(this).attr('href');
      otag='<object data="/webplayer/webplayer.swf" type="application/x-shockwave-flash" width="240" height="64">'+
           '<param name="movie" value="/webplayer/webplayer.swf">'+
           '<param name="menu" value="false">'+
           '<param name="scale" value="scale">'+
           '<param name="bgcolor" value="#000000">'+
           '<param name="flashvars" value="src='+url+'&amp;autostart=no&amp;loop=no">'+
           '</object>';
      $(this).replaceWith(otag);
   });
});


Thanks for a great product.


Top
 Profile  
 
 Post subject: Re: JQuery script to automatically replace .mp3 links
PostPosted: Thu Jul 01, 2010 2:08 pm 
Offline

Joined: Sun Feb 13, 2005 12:01 am
Posts: 151
Great idea! Thank you very much. I think we will add something like this to a future version of the WebPlayer to make CMS administrators lifes easier.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group