Sağlam popup code olan war mı?
7
●428
- 11-12-2008, 19:56:22burdan herkese ver faydalansın milletmedea_seo adlı üyeden alıntı: mesajı görüntüle
- 11-12-2008, 20:04:57Dener misin elimde ie olmadığı için deniyemedim;
<html> <head> <title>JS - Belli bir süre sonra açılan pencere</title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1254"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9"> <meta http-equiv="Content-Language" content="tr"> </head> <body> <script language="javascript" type="text/javascript"> function GG(alan) { var alanx; alanx = document.getElementById(alan).style; if (alanx.display == "none") { alanx.display = ""; } else { alanx.display = "none"; }; }; setTimeout("GG('yer1')", 3000); //3 saniye sonra açılır </script> <div id="yer1" style="display: none; border:1px solid #0000ff; position: absolute; left: 250px; top:100px; background-color: #ffff00;"> <table border="0" cellpadding="1" cellspacing="10"> <tr><td align="right"> <b><div onclick="javascript: GG('yer1');" style="cursor: pointer; color: #ff0000;">Kapat</div></b></td></tr> <tr><td><marquee direction="up" scrollamount="1" width="300" height="300"> <table border="0" cellpadding="1" cellspacing="10"> <tr><td>MESAJ BURAYA</td></tr></table></marquee></td></tr></table> </div> </body></html>