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

Shon12 לא מחובר  

בודק פשוט באמצעות navigator.appName אם הוא שונה מאקספלורר(!=) אז תציג שהוא נצפה בצורה הטובה ביותר באקספלורר:
HTML קוד:
<html>
    <head>
<script>
	function check_name(name) 
	{
		if (navigator.appName != name) 
		{
		document.getElementById('apps').innerHTML = "Web Site view at the Best Quality on Explorer browser";
		}
	}
</script>
    </head>
<body onload="check_name('Microsoft Internet Explorer');">
<div id="apps"></div>
</body>
</html>
__________________
Projector Lamps

Last edited by Shon12; 08-11-08 at 15:33..
  Reply With Quote