Skip to content

Instantly share code, notes, and snippets.

@max-kk
Created August 30, 2019 14:28
Show Gist options
  • Save max-kk/3e5605d6403c4564ec55e18ea3af1aeb to your computer and use it in GitHub Desktop.
Save max-kk/3e5605d6403c4564ec55e18ea3af1aeb to your computer and use it in GitHub Desktop.
FV :: redirect on click to the leaders image
if ( ! jQuery("body").hasClass("home") ) {
jQuery(".fv-leaders img").on("click", function(e) {
e.preventDefault();
window.location.href = "YOUR URL";
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment