Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-08-2007, 02:15 PM   PM User | #1
Gibson
New Coder

 
Join Date: Jun 2006
Posts: 37
Thanks: 0
Thanked 0 Times in 0 Posts
Gibson is an unknown quantity at this point
Need a little help with a pop up window thingy

Hey,

I have a pop up window but I want to turn off the status bar at the bottom but I can't figure it out. Here is the code:

Code:
<script language="javascript">
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+''
win = window.open(mypage,myname,settings)
}

</script>
and here is the link trigger:

Code:
<a style="border:none" href="http://www.mylink.com" onclick="NewWindow(this.href,'name','546','380','yes');return false"><img src="ltbutton.gif" border="0" /></a>
How do I turn the status bar off please

Hope you can help
Thanks
Gibson is offline   Reply With Quote
Old 05-08-2007, 03:27 PM   PM User | #2
glenngv
Supreme Master coder!


 
glenngv's Avatar
 
Join Date: Jun 2002
Location: Los Angeles, CA Original Location: Philippines
Posts: 10,241
Thanks: 0
Thanked 112 Times in 111 Posts
glenngv will become famous soon enough
Code:
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
  var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  var settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',status=0';
  win = window.open(mypage,myname,settings);
}
__________________
Glenn
_____________________________________________
Play Tower of Hanoi Android app (Ad-FREE!)
Play Tower of Hanoi Android app (FREE!)
Go to Tower of Hanoi Leaderboard
Play Tower of Hanoi Facebook app
glenngv is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:54 AM.


Advertisement
Log in to turn off these ads.