I'm wondering how to detect IE11 and its version with javascript and debug my css style with jquery or by just
if(//IE11){
<style>
#sms-cont {
height:315px;
}
</style>
}
or by
if(//IE11) {
$(document).ready(function () {
$("#sms-cont").css({
"width": "385px",
"height": "315px"
});
});
}
how to do this any idea? please help me in this , I'm stucked in very difficult situation. :(