I want to open a popup window for a printview and I have to pass the object id as get-parameter.
var w = window.open('http://example.com/print/?id=42');
But JavaScript cuts the querystring at this point and destroys my url.
http://example.com/print/
Is this a security feature? What can I do to pass the parameter? I cannot use nice urls. :(