Skip to content

Instantly share code, notes, and snippets.

@kylephillips
Created June 28, 2017 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylephillips/56cd667e21ed7fef1843ca007594a8e9 to your computer and use it in GitHub Desktop.
Save kylephillips/56cd667e21ed7fef1843ca007594a8e9 to your computer and use it in GitHub Desktop.
Open a new window after a user has favorited an item (Favorites for WordPress)
$(document).on('favorites-updated-single', function(event, favorites, post_id, site_id, status){
if ( status === 'inactive' ) return;
window.open("http://yourfavoriteurl.com", '_blank');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment