Browser Capibilities
I was wondering if there is any way around this. I am targeting these browsers, so it's quite a big problem. Thanks for your help.
I was wondering if there is any way around this. I am targeting these browsers, so it's quite a big problem. Thanks for your help.
AFAIK the situation is roughly as follows -
IE6/7 works ok
FF1.5.x works ok
FF 2 doesn't work properly, though there is a fix here - http://forums.microsoft.com
Opera 9 doesn't work properly (line drawing fails), but maybe the above link might also be a starting point to solving this problem?
You guys are blocking out browsers that otherwise have no issue displaying the site! Please fix this.
Thanks.
This is all pretty new stuff we're playing with here, not just some simply html pages any more.
I'd like to say thanks for the VE team for supporting Firefox (even 2.0 with a hack). This represents 96% of browser use across the world.
As a developer i'm actually kind of happy that i only have to do system test in 5 platforms on 2 OS! IE6, IE7, FF1.5, FF2.0 and now 3D on both WinXP and Vista.
So what is required to let VE know that seamonkey is compatible? Can you make it pretend it is Firefox? If so why not post this here as an unoffical hack to make it work?
John.
Hi,
Is there any code that checks users browser to see if VE is compatible with it and then displays an error message if not.
A code for this using Google Maps is;
if (GBrowserIsCompatible()) {
Is there any for VE, please your help is appreciated.
Regards,
There isn't any boolean variable that you can use to find compatibility in VE, but the list of supported browsers (which supports pretty much ~95% of Internet Users) are Internet Explorer 6+ and FireFox 1.5+.
If your using ASP.NET AJAX you can use:
//detect non-compatible browsers SupportedBrowser: { { supported = } { supported = } },
To clarify for others the snippet above is javascript but uses the helper functions from ASP.NET AJAX.
For those looking for a pure js way these articles should help:
http://www.javascriptkit.com/javatutors/navigator.shtml
http://www.javascriptkit.com/javatutors/objdetect3.shtml
John.