Is this really the recommended approach? I'm actually trying to throw away calls to Window.open() because of pop-up blockers. If a user clicks something to open a new window, the browser should natively open a new window, not JavaScript.
I tried using window.open..and it works fine with Firefox and chrome..But the window does not open in IE.I am setting the content-disposition as follows.
Ahh so love this issue. We use _self for browsers that aren't chrome, and _blank for Chrome. BUT of course IE sucks, so regardless if you go under Tools->Interenet Options->Security->Internet->Custom Level->Scroll to find Downloads, you hope things aren't disabled, but in many IT departments they do disable those options. So you've probably done as much as you can do. Otherwise show a prompt and tell the user to hold down CTRL while they perform the operation.
Comment