esafwan
2/10/2013 - 10:22 AM

Jquery Detect IE and Re-Direct

<script type="text/javascript">
  	jQuery(document).ready(function () {
			  if(jQuery.browser.msie){
			     if(parseFloat(jQuery.browser.version) < 9){
			        //Versions of IE less than 8
			       window.location = "http://google.com";
			     }
			     
			  }

});
		

</script>