0

Is it possible to make JQuery ui dialog fit to fullscreen by that I mean complete fullscreen outside browser boundaries?

If it is how can it be done?

I was thinking about resizing the document body to fullscreen and the dialog window.

Jacob
  • 3,580
  • 22
  • 82
  • 146

1 Answers1

2

It's impossible, since the jQuery UI dialog it's basically HTML elements styled to look like a window. What you asking for would require to render HTML outside the browser instance it's rendering the page and that's not possible.

The far you can get is to resize the browser window, and make the jQuery dialog fit the whole page. In this answer, you can find how to resize the browser. There's even a possible solution to force some browsers to go full screen.

Community
  • 1
  • 1
Marcus Vinicius
  • 1,891
  • 1
  • 19
  • 35