Skip to content

Instantly share code, notes, and snippets.

@robrocker7
Created October 22, 2010 21:57
Show Gist options
  • Save robrocker7/641454 to your computer and use it in GitHub Desktop.
Save robrocker7/641454 to your computer and use it in GitHub Desktop.
Changes for wpaudio javascript
$('.wpaudio').click(function() {
current_image = $(this).css('background-image');
if('<?php the_title(); ?>' == 'Home') {
background_image = '/wp-content/themes/profitfuel/images/icon_listen_home.png';
} else {
background_image = '/wp-content/themes/profitfuel/images/icon_listen_testimonials.png';
}
$('.wpaudio').css('background-image', 'url('+background_image+')');
if(current_image.match(/icon_pause/)){
$(this).css('background-image', 'url('+background_image+')');
} else {
$(this).css('background-image', 'url(/wp-content/themes/profitfuel/images/icon_pause.png)');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment