Skip to content

Instantly share code, notes, and snippets.

@philbar
Created February 2, 2015 18:50
Show Gist options
  • Save philbar/f160a32e6f4d6e47f9b9 to your computer and use it in GitHub Desktop.
Save philbar/f160a32e6f4d6e47f9b9 to your computer and use it in GitHub Desktop.
Append URL Params to Links
<script>
$(document).ready(function() {
var params = window.location.search.replace(/ /g,'%20');
var textLink = $('.lp-pom-text a').each( function(i) {
if(this.href.indexOf('?') !== -1){
this.href = this.href + params.replace("?", "");;
}
else {
this.href = this.href + params;
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment