Mobile app version of vmapp.org
Login or Join
Frith620

: Is it a good idea to recommend browser on a e-commerce web site I have built an e-commerce app but I didn't have a lot of time so I decided to build the app compatible with cutting-edge

@Frith620

Posted in: #Browsers #CrossBrowser #Javascript #Jquery #WebDevelopment

I have built an e-commerce app but I didn't have a lot of time so I decided to build the app compatible with cutting-edge browsers.

so of the features are not working and some them are working less attractively on older browsers.

do you thing it is a good idea to recommend browser type on a e-commerce web site? for example like below;


Poo Corporation recommends latest version of Google Chrome

10.04% popularity Vote Up Vote Down


Login to follow query

More posts by @Frith620

4 Comments

Sorted by latest first Latest Oldest Best

 

@Sent6035632

When using jQuery use this plugin.
www.silvesterwebdesigns.com/free-scripts/ie6-jquery-upgrade-prompt
That will popup a message just for IE6 users only (you could change to also inclue IE7,8). The benifit of this is:


Only people with older browsers will see it
It gives the user the option to dimiss the message so it will not display again.

10% popularity Vote Up Vote Down


 

@Mendez628

Ditto most of the other answers. Though you should at least support IE6+. If a visitor came using IE5 or less, I'd be inclined to block and ask them to upgrade. Probably no loss as someone with a browser that is that out of date is unlikely to buy online anyway.

Have a look at Chromeframe. It is a plug-in for older browsers such as IE6 which allows them to run Chrome within IE and thus get the support of the Chrome features without the need to actually upgrade their system. For the web developer, all you need is a little javascript and a metatag on your page and users of old browsers will be directed to install Chromeframe, after which they should be able to view your site without problem.

10% popularity Vote Up Vote Down


 

@Frith620

A browser recommendation is usually a Do Not Enter sign. Unless you have an extremely popular service with unique features, it is extremely unlikely that people will change browsers for you. Therefore they are highly likely to simply leave.

This does not mean you have to write code that works perfectly for every browser. In a support page somewhere you can have a list of tested browsers. Only people seriously interested in your service and experiencing problems will end up there. Those are more likely to listen to you.

The best thing to do is to look at your stats and see which browsers are most used to access your service. You should support at least 80% of visitors, I recommend 90% even but that depends on the difficulties you may have to support certain features on less common browsers (some of them may be fairly new even).

10% popularity Vote Up Vote Down


 

@Hamaas447

Well, I would test all major browsers and their older version (IE7, IE8, etc.) and I would note those that don't seem to best render your website. Then, I will simply write a piece of code that would only show browser recommendation for those that fall in the category of browser that don't render the pages appropriatly.

I also believe that suggesting to update the browser is a better practice than suggesting a browser. Most people prefer stability and they don't want to learn to use a new browser.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme