Quantcast
Channel: ExeOutput for PHP - G.D.G. Software Forum
Viewing all articles
Browse latest Browse all 1024

Full screen popup not working

$
0
0

@sgupta wrote:

Hi,

As a result of AJAX Call using Javascript, I want to show the response in a new popup window. I have written the following code, but its not working. A window opens up with the data, but it is not full screen.

var w = window.open(‘about:blank’, ‘Report’, “fullscreen”);
w.document.open();
w.document.write(this.responseText);
w.document.close();
w.moveTo(0,0);
w.resizeTo(screen.availWidth, screen.availHeight);

Also tried:

var params = [
‘height=’+screen.height,
‘width=’+screen.width,
‘fullscreen=yes’ // only works in IE, but here for completeness
].join(’,’);
var w = window.open(‘about:blank’, ‘Report’, params);
w.document.open();
w.document.write(this.responseText);
w.document.close();

Also Tried:
var w = window.open(’_blank’, “top=0,left=0,width=”+screen.availWidth+",height="+screen.availHeight);

Didnt work either.
Please suggest a solution.

Posts: 2

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 1024

Trending Articles