Any idea why IE6 doesn't like this code? Popups don't appear.
Thanks again.Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>PopUp Div + Background Disable</title> <style type="text/css"> .parentDisable { z-index:999; width:100%; height:100%; display:none; position:absolute; top:0; left:0; background-color: #ccc; color: #aaa; opacity: .4; filter: alpha(opacity=50); } #popup { width:500px; height:400px; position:absolute; top:200px; left:300px; color: #000; background-color: #fff; border: 2px solid black; } </style> <script type="text/javascript"> function pop(div) { document.getElementById(div).style.display='block'; return false } function hide(div) { document.getElementById(div).style.display='none'; return false } </script> </head> <body> <div id="pop1" class="parentDisable"> <div id="popup"> This is popup 1<p> <a href="#" onclick="return hide('pop1')">Close</a> </p> </div></div> <div id="pop2" class="parentDisable"> <div id="popup"> This is popup 2<p> <a href="#" onclick="return hide('pop2')">Close</a> </p> </div></div> <center> <h3>Simple Popup Div + Background Disable Example</h3> </br></br> <a href="#" onclick="return pop('pop1')">Popup 1</a> </br></br> <a href="#" onclick="return pop('pop2')">Popup 2</a> </center> </body> </html>



Reply With Quote




Bookmarks