Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

The no title bar popup

Status
Not open for further replies.

walkities

Technical User
Oct 4, 2004
31
CA
Ive been searching around the net and have found numerous examples of how to create a fullscreen popup with no title bars....however it seems none of them seem to work and now Im wondering if its at all even possible with IE6SP2 or Firefox?
 
post your code...

"...we both know I'm training to become a cagefighter...see what happens if you try 'n hit me..."
 
You could simulate a pop-up with something like this:

Code:
<html><head>
<script>
function hide(id) {
document.getElementById(id).style.visibility = "hidden"
}
function unhide(id) {
document.getElementById(id).style.visibility = "visible"
}
</script></head><body>
<input type="button" value="hide" onclick="hide('div1')" />
<input type="button" value="show" onclick="unhide('div1')" />
<div id="div1" 
style="position:relative;left:50px;top:0px;
width:200px;height:200px;background:yellow;
border:medium solid red; padding:10px;
visibility:hidden">YOUR CONTENT HERE<br />
<div align="right">
<input type="button" value="Close" onclick="hide('div1')" />
</div></div><body></html>

Clive
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top