View Single Post
ישן 05-11-08, 21:13   # 13
Shon12
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Oct 2007
הודעות: 354

Shon12 לא מחובר  

אוו דרך קצת מצחיקה מבחינת אבטחה,ולא כל-כך יעילה - היא לתחום את האתר ב-div ראשי, שברגע שהוא למשל לחץ: "i Agree" ה-div ישתנה, דוגמא:
HTML קוד:
<html>
    <head>
	<title>Warning!</title>
    </head>
<script>
show_site = "<div>
	     <img src='http://sex4free.co.il/heb_htm/site_img/open-r.jpg' />
	     </div>
";

show_die  = "You Not agree to regulations";

function checked(no_show) {
	if (no_show == "no") 
	{
	document.getElementById('menu').innerHTML = show_site;
	}
	else
	{
	document.getElementById('menu').innerHTML = show_die;
	}
}
</script>
<body>
	<div id="menu">
	<a href="#" onclick="checked('no');">I Agree</a>
	<a href="#" onclick="checked('yes');">I Not Agree</a>
	</div>
</body>
</html>
__________________
Projector Lamps
  Reply With Quote