/ Published in: JavaScript
Javascript to open a URL in a new window without triggering a browser's pop-up blocker. (May not work in callbacks, but not sure why.)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var newWin = window.open(); newWin.location = href;