/    Sign up×
Community /Pin to ProfileBookmark

pop up window javascript

Im looking for the java script that launches a console and makes it so that it occupies the entire page. you cannot see the top or bottom link bars, only a html page.

can someone please assist me in finding it or emailing it to me?

Thanks

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@khalidali63Apr 29.2003 — Check this link out.

http://68.145.35.86/skills/javascripts/WindowOpenFullScreen.html

[b]NOTE:[/b]

This link will close this window and open an other window taking up all of the availabale screen area.
Copy linkTweet thisAlerts:
@Bootsman123Apr 29.2003 — Maybe you could take a look at this.

<html>

<head>

<script LANGUAGE="JavaScript">

<!-- Begin

var theURL = "pagina0.html";

var windowWidth = 800; // cannot be less than 100

var windowHeight = 600; // cannot be less than 100

var windowX = 0;

var windowY = 0;

var autocenter = true;

var autoclose = true;

var s="width="+windowWidth+",height="+windowHeight;

var beIE=document.all?true:false;

var done=new Object("no");

if(autocenter){

windowX = (window.screen.width-windowWidth)/2;

windowY = (window.screen.height-windowHeight)/2;

}

function doAgilePopup(){

if (beIE){

agilePopper = window.open("","popAgile","fullscreen,"+s);


agilePopper.resizeTo(windowWidth,windowHeight);

agilePopper.moveTo(windowX,windowY);

var frameString=""+

"<html>"+

"<head>"+

"<title>De laser</title>"+

"</head>"+

"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+

"<frame name='top' src='"+theURL+"' scrolling=no>"+

"<frame name='bottom' src='about:blank' scrolling='no'>"+

"</frameset>"+

"</html>"

agilePopper.document.open();

agilePopper.document.write(frameString);

agilePopper.document.close();

}else{

agilePopper=window.open(theURL,"popAgile","scrollbars=no,"+s);

agilePopper.resizeTo(windowWidth,windowHeight);

agilePopper.moveTo(windowX,windowY);

}


if (autoclose){

window._onUnload = function(){agilePopper.close();}

}


done="okay";

}

// End -->

</script>

</head>

<body onLoad="doAgilePopup()">

</body>

</html>
Copy linkTweet thisAlerts:
@webguzsauthorApr 29.2003 — yep that one works just fine. Thank you very much

Paul
×

Success!

Help @webguzs spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.19,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...