Show DevBest Just a little something from me...

Status
Not open for further replies.

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,638
2,393
This is just a little something I wrote for most aspiring web developers that I think you may want to use.

1339819285-Screenshot_2.png
 

Gajeel

Well-Known Member
Oct 4, 2011
2,411
413
How can we identify other 'nicks' for other browsers like:
  • Google Chrome (Chromium)
  • Mozilla Firefox
  • Rockmelt
  • and many other open-source/closed-source browsers out there...
As of Internet Explorer is msie.
 

RastaLulz

fight teh power
Staff member
May 3, 2010
3,930
3,926
I use something similar on ShareFast, since IE is just not worth it.

Code:
if($.browser.msie && $.browser.version < 9) {
 
    window.location="http://sharefa.st/chrome.html"
 
}

Although the latest revisions of IE are pretty safe, so I'd recommend checking the browsers version.

How can we identify other 'nicks' for other browsers like:
  • Google Chrome (Chromium)
  • Mozilla Firefox
  • Rockmelt
  • and many other open-source/closed-source browsers out there...
As of Internet Explorer is msie.

 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,638
2,393
I use something similar on ShareFast, since IE is just not worth it.

Code:
if($.browser.msie && $.browser.version < 9) {
 
    window.location="http://sharefa.st/chrome.html"
 
}

Although the latest revisions of IE are pretty safe, so I'd recommend checking the browsers version.



I just hate IE altogether!
 
Status
Not open for further replies.

Users who are viewing this thread

Top