tag

2 minutes read
If you are a Web developer and still code websites compatible with a few older versions of Internet Explorer, then you must be well aware of X-UA-Compatible meta tag. Preface The X-UA-Compatible is a document mode meta tag that allows web developers to choose for what version of IE the page should render as. Below is how the tag looks like: <meta http-equiv="X-UA-Compatible" content="IE=edge"> You may provide information to the content attribute accordingly as per your requ...