Skip to content

Instantly share code, notes, and snippets.

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 noahub/4ee83542548f3e33d6ef3eb0054f2e14 to your computer and use it in GitHub Desktop.
Save noahub/4ee83542548f3e33d6ef3eb0054f2e14 to your computer and use it in GitHub Desktop.
Carry over URL parameters to text and image links on Unbounce
<script>
$(function() {
$('.lp-pom-image a, .lp-pom-text a').not('a[href^=#]').each( function() {
this.href = this.href + window.location.search;
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment