Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to 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