Trying to open a new browser window in my ajax success call, however, it is blocked as a popup. I did some searching and found that a user event needs to be tied to the win
For opening a new URL in the window you opened in onclick, do the following
var newWindow = window.open("","_blank");newWindow.location.href = newURL;One additional thing that can be done to improve user experience is to send the new window to background immediately (newWindow.blur) after opening and then bring it in foreground again (newWindow.focus) while opening the URL the the new window.