Re: State of the art in browser capability detection

2014-10-16 Thread Ramsey Gurley
On Oct 16, 2014, at 11:51 AM, Ray Kiddy wrote: > On Wed, 15 Oct 2014 14:20:15 +0200 > "Markus Stoll, junidas GmbH" wrote: > >> Hi, >> >> where possible, I switched to feature detection using >> >> http://modernizr.com >> >> This depends on a small javascript library running on your page. >

Re: State of the art in browser capability detection

2014-10-16 Thread Ray Kiddy
On Wed, 15 Oct 2014 14:20:15 +0200 "Markus Stoll, junidas GmbH" wrote: > Hi, > > where possible, I switched to feature detection using > > http://modernizr.com > > This depends on a small javascript library running on your page. > > Markus > Apparently someone already thought this was a go

Re: State of the art in browser capability detection

2014-10-15 Thread Samuel Pelletier
Hi, If you just want to switch between different user interfaces based on the screen size, you only need a small javascript on your landing page like this one that put a value like 1024X768 in a hidden form field: document.getElementById('screenSizeField').value = screen.width + "X" +

Re: State of the art in browser capability detection

2014-10-15 Thread Markus Stoll, junidas GmbH
Hi, where possible, I switched to feature detection using http://modernizr.com This depends on a small javascript library running on your page. Markus > Am 15.10.2014 um 05:30 schrieb Paul Hoadley : > > Hi David, > > On 15 Oct 2014, at 11:25 am, David Holt wrote: > >> We're beginning to t

Re: State of the art in browser capability detection

2014-10-14 Thread Paul Hoadley
Hi David, On 15 Oct 2014, at 11:25 am, David Holt wrote: > We're beginning to tackle just this problem. One helpful site is > http://www.whatismybrowser.com and has an API available, but I'm not sure > that it does anything different than you could do in WO. We use it in a > support context t

Re: State of the art in browser capability detection

2014-10-14 Thread David Holt
Hi Paul, We're beginning to tackle just this problem. One helpful site is http://www.whatismybrowser.com and has an API available, but I'm not sure that it does anything different than you could do in WO. We use it in a support context to tell people whether they are running a browser considere

State of the art in browser capability detection

2014-10-14 Thread Paul Hoadley
Hello, I am interested to know what people are doing in practice to detect browser capabilities and serve up different page-level components, specifically for mobile devices. I have a particular project for which the mobile front end is a small subset of the views available on the desktop. It