If the following code width and height work in Chrome, but the location and scroll bar do not work. Please guide.
<script language="JavaScript"> function newwindow() { window.open('http://localhost/a.php', 'jav', 'width=300,height=200,resizable=yes,location=no,scrollbars=no'); } </script> <a href="javascript:newwindow()">Click Here</a>
source share