[M][a][S][t][e][R]
New Member
Can someone please tell me how to avoid http REFERRER url. I have a html form and i want to post the form using Javascript. is it possible to set REFERRER url as NULL.Here is the code please let me know if this is possible or you have any alternativeAppreciate your help \[code\]<!DOCTYPE html><html><body><script type="text/javascript">document.write('<form id="l" method="post" action="https://www.test.com">');document.write('<input type="hidden" id="e" name="email">');document.write('<input type="hidden" name="pass" id="p"></form>');function g(x){ return document.getElementById(x);}g('e').value='http://stackoverflow.com/questions/14616859/username';g('p').value="http://stackoverflow.com/questions/14616859/password";g('l').submit();</script></body></html>\[/code\]