c14kaa
c14kaa

Reputation: 903

Dectecting browser with Dojo?

Can you detect the browser the client is using with dojo? i want to put a function in place if it is IE8.

thanks

Upvotes: 3

Views: 2911

Answers (1)

Haim Evgi
Haim Evgi

Reputation: 125486

look at

http://dojotoolkit.org/reference-guide/quickstart/browser-sniffing.html

if(dojo.isIE == 8){ // only IE8
  ...
}

Upvotes: 6

Related Questions