What I need is in a window I want to open, there is this:
width="989" height="560"
And I want the width and height to be that of the screen.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I take it you mean that the HTML of a web page you want to open contains a fixed width and height (indicated in your code snippet above).
Since the server doesn’t know where the client’s browser is on the screen, nor the size of the screen, it cannot specify the size of the page. Instead, you need to use Javascript to set the size and position of the browser window:
HTH.