javascript - window.open doesn't open with browser back button in Chrome -


i trying open link in new window using simple window.open.

however want browser button, give below parameters. works fine in browsers except google chrome. have tried every possible permutation button doesn't come in chrome:

<a onclick="window.open('http://www.google.com',                         'popupwindow',                         'height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=yes,directories=no, status=yes'                        );">click here</a> 

change menubar=no menubar=yes, here code.

note : not open pop up, open new tab.

<a onclick="window.open('http://www.google.com',                         'popupwindow',                         'height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,location=yes,directories=no, status=yes'                        );">click here</a> 

Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -