javascript - window.open with headers -
can control http headers sent window.open
(cross browser)?
if not, can somehow window.open
page issues request custom headers inside popped-up window?
i need cunning hacks.
can control http headers sent window.open (cross browser)?
no
if not, can somehow window.open page issues request custom headers inside popped-up window?
- you can request url triggers server side program makes request arbitrary headers , returns response
- you can run javascript (probably saying goodbye progressive enhancement) uses xhr make request arbitrary headers (assuming url fits within same origin policy) , process result in js.
i need cunning hacks...
it might if described problem instead of asking if possible solutions work.
Comments
Post a Comment