Skip to content

Instantly share code, notes, and snippets.

@johnnyopao
Created February 19, 2015 21:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save johnnyopao/6c500ad1cd8c297ec2fc to your computer and use it in GitHub Desktop.
Save johnnyopao/6c500ad1cd8c297ec2fc 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