Skip to content Skip to sidebar Skip to footer

I Want A Text Box Appear When My Client Is Using Only IE 11 To Open My Website

I want a text box to appear when a user or client is opening my website using IE 11, while I'm trying to resolve a problem in my code. Or if you maybe have an idea to resolve my pr

Solution 1:

There is no problem with IE. The problem is in your code.

Please find all .img {width:100%} in your enormous CSS and replace them with
img {width:100%} (without a dot).


Solution 2:

You can target IE11 with browser sniffing. This comes with its own downsides, as you might know.

In my experience IE11 is not that bad (compared to IE8 or Safari). So there is a good chance that your issue or set of issues can be handled.

Please ask a more specific question.


Solution 3:

<script type="text/javascript">
   var isIE11 = !!window.MSInputMethodContext && !!document.documentMode;
        if(isIE11)
	  document.getElementById("IDOfYourElement").style.display="block";
        
</script>

Please first search before ask question.

Internet Explorer 11 detection


Post a Comment for "I Want A Text Box Appear When My Client Is Using Only IE 11 To Open My Website"