Developing Cross Browser Compatible Web Apps With Modernizr

Arnab Roy Chowdhury

Posted On: August 2, 2018

view count15575 Views

Read time5 Min Read

This article is for developers who are not that much comfortable in using JavaScript, but are comfortable in using HTML and CSS for web development. There is an incredible open source JavaScript library called Modernizr that can efficiently solve challenges faced in cross browser web development and based on test case scenarios, conditionally load JS or CSS files. Modernizr detects the CSS3 and HTML5 features supported by the browser of the end user. If you are smart, and have time to use this data, then you can develop webpages that behave differently based on this detection. For example you can detect if the rendering browser is Edge version 15 which does not support a specific function of your master CSS and based on that give a fallback CSS for not supported browsers

It allows developers to test the new features and also provide fallback measures for browsers where the features are not supported. This process is a little bit more efficient and surgical than traditional browser sniffing and is called Feature detection.

What is Feature detection?

When UI development was in the dark ages, developers had to write conditional scripts in order to make sure whether the new HTML or CSS feature they are about to use is supported by the browser. But what if an updated version of the browser is released that supports the feature. The code will remain the same, and the script will run unnecessarily, increasing the complexity of the code. The worst case being, you will stay uninformed that the code works in the updated browser and will go on writing conditional scripts for future codes.

Modernizr introduces Feature Detection. That will check whether the browser supports the code and gives you a “false” or “true” result. Based on that result, you need to update the code. Let’s take a look into how to install and use Modernizr and some of its features that makes cross browser compatible application developmentmuch easier.

Let’s Get Started

In the previous versions, developers needed to download and add the modernizr.js file in their code. But a lot has changed. Now you can select the features that are needed in your code and invoke Modenizer from cloud url.

  • First of all, you need to add the following line in your HTML document
    script src="modernizr.js">/script
  • You can also use npm to download and install modernizr by entering the following line in command prompt.
    npm install -g modernizr
  • Based on the features you want to detect, you need to build and download the modernizr.js file.
  • Download Modernizr

  • Modernizr does its job by adding classes in your HTML tag and finds out which classes are supported by the browser and which are not.

    Modernizr Functionality

    The features which are not supported by the browser are prefixed with a “no-“ as mentioned in the above figure. The class “csscoloumns” is not supported by IE9. Hence it is stated as no-csscolumns.


  • download whitepaper

    Fallback Procedures in CSS

    Because of the extra classes that have been added, we now have an option to add alternative styles through CSS. For example, let’s suppose we are using font-face in CSS to add a custom font and set its size by 2em. However, when font face is not supported by a browser, the custom font is replaced by standard web safe font of size 2em. What happens in that case is, the default font may look odd when its size is 2em. In that case, a fallback can be set by the following code

    .no-fontface h1 {
    font-size: 1.2em;
    }

    This feature is known as CSS specificity that can override the standard sizing of browsers that need a different protocol. This is a simple example of how cross browser issues can be solved using Modernizr. The conclusion is, for CSS issues, instead of adding browser specific hacks, Modernizr can be used for a more secure procedure for styling a webpage.

    Polyfilling With Conditional Loader

    What if the developer wants to find out a feature and use polyfilling to increase the performance rating of the browser. It can be done with YepNope, a conditional loader built in Modernizr.

    YepNope only loads the scripts which the browser needs. And since it is an inbuilt feature, the developer does not need to worry about linking another JS file. Let’s see how it is used.

    • Suppose you are using canvas in your code, and since it is not supported by IE8, a fallback is needed.
    • Traditionally it can be done by downloading and importing flashcanvas.js in your code.
    • The problem is, all browsers will download it, even those which supports canvas.
    • Instead of wrapping the script with conditional elements, YepNope can be used. It can test whether the browser supports canvas and if not, it will allow the browser to download flashcanvas.

    Modernizr Load

    By now, you should have a clear understanding of some interesting features by which modernizr makes browser compatibility tests much easier. However, before installing it should be kept in mind that, like all other scripts, Modernizr can also be loaded at the bottom of the page for saving the loading time. However, some of its tests causes reflows and the browser has to perform some recalculation to check whether certain styles are supported. A better approach is the check the complexity of the page. In case of multiple internal CSS, the calculations are more complicated and it is better to load modernizr in the “head” of the html. However, if the body is empty, like all other external JS scripts, it makes sense to load modernizr at the bottom of the page.

    Browser Compatibility Check

Author Profile Author Profile Author Profile

Author’s Profile

Arnab Roy Chowdhury

Arnab Roy Chowdhury is a UI developer by profession and a blogging enthusiast. He has been writing content for about 5 years and has strong expertise in technical blogs, travelogues, and content in the latest programming languages.

Blogs: 79



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free