turn off title bar, etc???
Moderator: General Moderators
turn off title bar, etc???
Ok, I posted this in the wrong place at first so I'm going to post it here again. I was just wondering if anyone knew (with the new version of IE if you could turn off the title bar, tool bars, etc. Basically all I want is a pop-up to come up and have just an image and then be redirected to another page after a certain amount of time. Does anyone know how to do this? Please Help!!
Jr-
Jr-
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Code: Select all
<a href="e;#"e; onClick="e;MyWindow=window.open('http://www.google.com','MyWindow','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=400, height=400'); return false;"e;>Popup</a>
Last edited by John Cartwright on Wed Mar 23, 2005 10:43 am, edited 1 time in total.
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
http://www.w3schools.com/dhtml/dhtml_css.asp
http://sunsite.iisc.ernet.in/virlib/htm ... whide.html
should get you started.
http://sunsite.iisc.ernet.in/virlib/htm ... whide.html
should get you started.
ok, *sigh*... I'm sure its just my lack of knowledge with JavaScript all together and I have only been working with PHP (pretty much on my own) for about the last year or so. I'm sure I'm not explaining this correctly and I dont even know if its possible but I'm trying to hide ANY kind of browser remanance and ONLY show a table (or something) that would normally be within the browser's borders.
Has anyone even done this? Is there anyway someone could give me a bit of an example code or something about this? Again, I know almost nothing about JavaScript so all the things I find online unfortunately make absolutely no sense. Thanks again for the help.
Jr-
Has anyone even done this? Is there anyway someone could give me a bit of an example code or something about this? Again, I know almost nothing about JavaScript so all the things I find online unfortunately make absolutely no sense. Thanks again for the help.
Jr-
- n00b Saibot
- DevNet Resident
- Posts: 1452
- Joined: Fri Dec 24, 2004 2:59 am
- Location: Lucknow, UP, India
- Contact:
Code: Select all
<div id="e;MyPic"e; style="e;display:none;"e;><img src="e;ghost.jpg"e;></div>
<input type="e;button"e; onclick="e;document.getElementById('MyPic').style.display = ''"e; value="e;Show Image"e;>