Anyone knows if with jquery or general javascript, I can change the referrer from the header in an http ajax call?
basically I want it to be sent from my page but ha
You can always use this :
jQuery.ajaxSetup({ 'beforeSend': function(xhr) {xhr.setRequestHeader("header key", "header value")} })
But ofcourse, the browser can have a different opinion about the referer header. This should be tested :)