View Single Post
Old 08-02-2015, 04:08 PM  
Video-Post
Selling short ICQ numbers
 
Video-Post's Avatar
 
Industry Role:
Join Date: Dec 2001
Location: NL
Posts: 1,118
If you want do it in real time, simply paste the code below somewhere inside the HTML tags:

Code:
<span id="brchk"><span>
<script>
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./))
document.getElementById("brchk").innerHTML = "<!-- two three four -->";
else                 
document.getElementById("brchk").innerHTML = "<!-- one two three four -->";
</script>
Since it's just a quick check, this is probably the easiest and most sensible approach.

Video-Post is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote