0

When using window.open with below given code, there is issue in closing the Window, Minimizing the window, and maximizing the window.

window.open(url, '_blank', "height=" + winH + ",width=" + winW + ",fullscreen=yes");

After pressing win+D (minimizing all windows), and opening only the new window, the above mentioned buttons (Minimize, Maximize, Close) were working.

2
  • Is this the issue you're experiencing? Commented Jun 9, 2015 at 6:59
  • @avk87 I created a jsfiddle that shows this in action in my answer below Commented Jul 12, 2015 at 18:09

1 Answer 1

1

On Build 10162, I got it working here on this JSFiddle http://jsfiddle.net/RamiSarieddine/wu09fh1d/

window.open("http://dev.modern.ie/community/","_blank","height=500,width=500,scrollbars=yes,location=yes");

you can see the window opening with height 500, width 300 with a scroll bar, mini-maximize and close button. Check the screenshot below. enter image description here

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.