How to write IE Version specific jQuery code
Well, making code browser compatible is always a challenge and presence of various browsers makes life difficult for developers. In this post, you will find the way to code for IE specific version. jQuery provides .browser property which returns the browser information. Below jQuery code checks for IE version 7 only. $(document).ready(function(){ if(jQuery.browser.msie && jQuery.browser.version.substring(0, […]