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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 11, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 30 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
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