อยากจะเขียนให้เว็บตรวจสอบว่าเครื่องที่ใช้เข้าเว็บใช้ Browser Google Chrome หรือเปล่าถ้าไม่ใช่อยากให้มัน Redirect ไปเปิด Google Chrome หรือแจ้งเตือนขึ้นมาว่าให้เปิดเว็บจาก Google Chrome เท่านั้น แล้วปิดหน้าเว็บทิ้งไป
<script>
function GetIEVersion() {
var sAgent = window.navigator.userAgent;
var Idx = sAgent.indexOf("MSIE");
// If IE, return version number.
if (Idx > 0)
return parseInt(sAgent.substring(Idx+ 5, sAgent.indexOf(".", Idx)));
// If IE 11 then look for Updated user agent string.
else if (!!navigator.userAgent.match(/Trident\/7\./))
return 11;
else
return 0; //It is not IE
}
if (GetIEVersion() > 0){
window.open('','_self'); window.close();
}
</script>