I'm wondering how to detect IE11 and change css to debug by Jquery or by <style type="text/css">
the conditional statements is not working <!--[if IE 11]-->...somecode...<![endif]--> as well the jquery is neither too. :(
like
<script type="text/javascript">
  if(//IE11){
    <style>
    #sms-cont {
    height:315px;
    }
    </style>
   }
</script>
or by
   if(//IE11) {
    $(document).ready(function () {
    $("#sms-cont").css({
        "width": "385px",
        "height": "315px"
      });
   });
  }       
any idea how to detect it which realy works and change any code or put css to debug?
 
    