Jump to content

help with this code! background fade out while a popup is active for comments


iceman023

Recommended Posts

I found this code online... Does anything think this is the eastest way to do this.. I just want the background to be inactive/greyed out while a popup is active to add text..

 

 

<script language="javascript" type="text/javascript">

function showPopUp()

{

document.getElementById("dialogue").style.display = "";

document.getElementById("overlay").style.display = "";

}

function hidePopUp()

{

document.getElementById("dialogue").style.display = "none";

document.getElementById("overlay").style.display = "none";

}

</script>

 

 

<style type="text/css">

*html #overlay

{

/*\*/

position:absolute;

top: expression(((ignoreMe = document.documentElement.scrollTop? document.documentElement.scrollTop : document.body.scrollTop)) + 'px');

left: expression(((ignoreMe2 = document.documentElement.scrollLeft? document.documentElement.scrollLeft : document.body.scrollLeft)) + 'px');

/**/

}

</style>

 

<div id="dialogue" style="position:absolute;z-index:2000;top:280px;left:240px;width:340px;height:130px;border:1px solid black;background-color:#0055E7;font-size:12px;font-weight:bold;color:white;display:none">

  Pop Up Window

<table style="margin:13px 5px 5px 5px;background-color:lightyellow;color:black">

<tr><td align="center" colspan="2">What would you like to do now?<br /><br /></td>

</tr>

<tr>

<td><input type="button" name="btn_Close" id="btn_Close" onClick="hidePopUp()" value="Hide PopUp" /></td>

<td><input type="button" name="btn_Nothing" id="btn_Nothing" onClick="return false" value="Nothing" /></td>

</tr>

</table>

</div>

<div id="overlay" style="position:fixed;z-index:1000;top:0px;left:0px;width:100%;height:100%;background-color:#666666;opacity:.7;filter:alpha(opacity=70);display:none"> </div>

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.