Title: Playlists
Last modified: November 29, 2016

---

# Playlists

 *  Resolved Anonymous User 15217539
 * (@anonymized-15217539)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/playlists-5/)
 * Hello,
 * Thanks for the great plugin! It does the job perfectly. Unfortunately, it doesn’t
   work on audio playlists.
 * I took a quick look at the js code (I don’t know javascript however) and it references‘.
   wp-audio-shortcode’ – I’ve noticed that playlists don’t include this class in
   the HTML. Perhaps this is why?
 * Is there anything that I can do to fix this?
 * Thanks,
 * Rob

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [er0l](https://wordpress.org/support/users/er0l/)
 * (@er0l)
 * [9 years ago](https://wordpress.org/support/topic/playlists-5/#post-9038693)
 * I am also interested in playlist fix.
 *  [er0l](https://wordpress.org/support/users/er0l/)
 * (@er0l)
 * [9 years ago](https://wordpress.org/support/topic/playlists-5/#post-9040781)
 * I thought adding
 *     ```
               $('.wp-audio-playlist').bind('play', function (e) {
   
                   var fileurl = '';
                   var href = $(this).find('a').attr('href');
   
                   if( typeof href !== 'undefined' ) {
                       fileurl = href;
                   }
   
                   gaEvent('wp-audio-playlist', 'play', fileurl)
               });
   
               $('.wp-audio-playlist').bind('pause', function (e) {
   
                   var fileurl = '';
                   var href = $(this).find('a').attr('href');
   
                   if( typeof href !== 'undefined' ) {
                       fileurl = href;
                   }
   
                   gaEvent('wp-audio-playlist', 'pause', fileurl)
               });
   
               $('.wp-audio-playlist').bind('ended', function (e) {
   
                   var fileurl = '';
                   var href = $(this).find('a').attr('href');
   
                   if( typeof href !== 'undefined' ) {
                       fileurl = href;
                   }
   
                   gaEvent('wp-audio-playlist', 'ended', fileurl)
               });
       ```
   
 * to jquery.me-ga-events.js would be enough, but so far it is nto working. Any 
   advice how to implement this ?
 *  Plugin Author [Marc Tönsing](https://wordpress.org/support/users/marcdk/)
 * (@marcdk)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/playlists-5/#post-9549415)
 * This plugin now supports playlist since version 1.4
 *  [er0l](https://wordpress.org/support/users/er0l/)
 * (@er0l)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/playlists-5/#post-9551103)
 * Thanks for the info Marc. It really works great. Great work.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Playlists’ is closed to new replies.

 * ![](https://ps.w.org/marctv-mediaelement-tracking/assets/icon.svg?rev=2457515)
 * [MediaElement Google Analytics & Piwik Event Tracking](https://wordpress.org/plugins/marctv-mediaelement-tracking/)
 * [Support Threads](https://wordpress.org/support/plugin/marctv-mediaelement-tracking/)
 * [Active Topics](https://wordpress.org/support/plugin/marctv-mediaelement-tracking/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/marctv-mediaelement-tracking/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/marctv-mediaelement-tracking/reviews/)

## Tags

 * [Playlists](https://wordpress.org/support/topic-tag/playlists/)

 * 4 replies
 * 3 participants
 * Last reply from: [er0l](https://wordpress.org/support/users/er0l/)
 * Last activity: [8 years, 7 months ago](https://wordpress.org/support/topic/playlists-5/#post-9551103)
 * Status: resolved