I am using $.getscript("");
to get remote script. However, when I use it, the referer information goes to there. I don't want to send the referer information when I use the function. Tried this without any luck,
$.ajaxSetup({
headers: { "Referer": "" }
});
$.getScript("http://www.example.org/script.js");
What is the correct way to do that ?