My task requires me to create a page in HTML5 with the following requirements:
- Compatible with Internet Explorer 10
- Has an option to enable Full screen view of certain excel reports on page as per filter values
- Does not reload the already loaded report, must hide other contents of the page and should hide the taskbar and toolbar
- Should have an option to exit full screen view without a reload
I just want the report that has loaded on the page to be displayed in full screen.
I have tried window.open ("www.stackoverflow.com","","fullscreen=yes");
But this opens a new window and reloads the contents
I have tried requestFullScreen() but according to this page this feature is not supported in IE
And also hoped triggering F11 key would be an answer, but that doesn't work as well..
Is there anyone who could help me find a solution?