I have a code that used to open a popup window in all browsers, but now chrome started opening a new tab instead.
Does anyone knows what did they change and how do I open a popup window now?
This is my code:
function openWindow(url, title) {
window.open(url, title, 'height=640,width=960,toolbar=no,menubar=no,scrollbars=no,location=no,status=no');
}