nima1981 icon

Untitled

nima1981 | PRO | 06/08/17 01:51:41 PM UTC | 0 ⭐ | 104 👁️ | Never ⏰ | []
text |

450 B

|

None

|

0 👍

/

0 👎

<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