JavaScriptでIEのバージョン処理を別ける方法


var ua = navigator.userAgent;
if (ua.match(/msie [6-9]./i)) {
  //IE6〜9でやりたい処理を書く
}

IE11では使えない