Here is my problem...
I have a site that authenticates based on HTTP_REFERER.
One of our clients is using a javascript select menu to access our site. Which he uses the code
<select onChange="window.open(this.options[this.selectedIndex].value,'_blank')">
This code will not maintain headers and will not return the HTTP_REFERER. I have also tried keeping it in the same browser window (_top)
I have also tried to use location.href using this code
<select onChange="location.href='' + this.options[this.selectedIndex].value + ''">
Still.. the same problem, no headers.
Does anyone have a work around for this? Any ideas at all?
I appreciate any input you can give 🙂