Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Removing IE=EmulateIE7 from top of SiteBuilder
In every page in SiteBuilder, NetSuite puts in a meta tag that really messes things up for Internet Explorer.
<meta content="IE=EmulateIE7" http-equiv="X-UA-Compatible">
<script language='JavaScript' type='text/javascript'>window.status='Loading...';</script>
It sets the compatibility mode to IE7.
For Bootstrap, we have to add these few lines:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags must come first in the head -->
We set the compatibility mode to IE=edge
0