I am trying to write browser specific code. Is there a GWT API to find out which browser the client is using?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The GWT Developer's Guide page on Cross-Browser Support gives a JSNI function that returns the UserAgent string. Note, however, that you probably want to use Deferred Binding to write browser-specific code, instead of detecting the UserAgent. Edit: Kasturi points out Window.Navigator.getUserAgent(), which is implemented like so:
So yes, this should do what the function mentioned on the Cross-Browser Support page does (except that it doesn't call toLowerCase() on it), though again you may be better off using deferred binding. |
|||||||||
|