Know IE Browser Version

Here is simple jquery function to know about the IE browser version.


jQuery(document).ready(function(){

   var browserProperties = $.browser;

 
   if ($.browser.msie) {

       if(browserProperties.version < "9"){

           alert("Please upgrade your Internet Explorer to verion 9 and above.");

         
       }

   }

   });


Comments

Popular posts from this blog

Gradient Border Colors with CSS

10 Useful Libraries and Resources for Responsive Web Design

The Simplest Way To Center Elements Vertically And Horizontally