Whats the best/easiest way to detect if a surfer is using SP2. I am not sure of the exact code but it has to be possible no?
SP2 Detection Code?
Collapse
X
-
If the user agent string contains "SV1", Internet Explorer is in SP2.
PHP Code:var g_fIsSP2 = false; function browserVersion() { g_fIsSP2 = (window.navigator.userAgent.indexOf("SV1") != -1); if (g_fIsSP2) { //This browser is Internet Explorer in SP2. } else { //This browser is not Internet Explorer in SP2. } }hatisblack at yahoo.com -
The code all fucked up because the gfy mods couldn't figure out how to parse properly.hatisblack at yahoo.comComment
-
smokey is there anyway you can email to me [email protected] or ICQ (146664255)?Originally posted by SmokeyTheBear
The code all fucked up because the gfy mods couldn't figure out how to parse properly.Comment

Comment