On my current app, a fair amount of traffic comes from IE8 and IE9 (unfortunately). These browsers in particular have been tricky to deal with since a lot of css and javascript/ajax simply doesn’t work in them. Are there any best practices for handling different browsers which can’t handle things that Firefox and Chrome can?
As one example, I have a form which uses a lot of ajax, but the ajax (and the css) doesn’t work properly in IE8. I’m considering creating a simple html only version of the form to serve up to IE8 visitors. In this case could I just check the user_agent in the controller or view and then based on that show the appropriate version of the form.
Looking forward to hearing everyone’s thoughts. Thanks!