<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
if(document.referrer != '')
{
var querystring = 'http_referer=' + encodeURI(document.referrer);
$('a').each(function() {
var href = $(this).attr('href');
if (href) {
if (href.includes('julienslive.com')){
href += (href.match(/\?/) ? '&' : '?') + querystring;
$(this).attr('href', href);
}
}
});
}
</script>
Comments