I am successfully retrieving a script using
$( document ).ready(function() { $.getScript("http://example.org/script.js"); });
However, he always sends an empty referrer to example.org. My question is, what is the correct approach for sending a referrer when using this function programmatically?
source share