<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: IE8 error in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457983#M42271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I may have isolated the cause.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I copied the code for the World Topographic sample into a blank page and it worked in IE7 (compatablity mode), IE8 and IE9.&amp;nbsp; When I replaced the URL with the map service I am using and initial extent values it worked in FF, Chrome, and Safari but not IE.&amp;nbsp; So it's possible a setting or layer in my map service is causing the map not to display in IE.&amp;nbsp; One of the layers has a transparency effect but all the others contain map tiles (jpg format).&amp;nbsp; Has anyone come across a map service not displaying because of the settings or the data within it? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am going to create a simple map service with just one layer or map data and see if that works.&amp;nbsp; I'll update the post once this has been done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Aug 2011 12:25:34 GMT</pubDate>
    <dc:creator>DavidMurray</dc:creator>
    <dc:date>2011-08-15T12:25:34Z</dc:date>
    <item>
      <title>IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457974#M42262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am currently developing an application which displays the map without errors in Firefox, Safari, and Chrome, but when I open it in IE8 I get the following message:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="font-style:italic;"&gt;Webpage error details&lt;BR /&gt;&lt;BR /&gt;Message: Invalid argument.&lt;BR /&gt;Line: 14&lt;BR /&gt;Char: 56639&lt;BR /&gt;Code: 0&lt;BR /&gt;URI: &lt;A href="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.4"&gt;http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.4&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have added the &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;&amp;lt;meta http-equiv="X-UA-Compatible" content="IE=7,IE=9" /&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt; at the top of the ASP file so compatibility should be ok.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas on what the cause maybe?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mnay thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2011 12:50:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457974#M42262</guid>
      <dc:creator>DavidMurray</dc:creator>
      <dc:date>2011-08-03T12:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457975#M42263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;IE's JS errors are notoriously cryptic/bad. Can you post your code?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2011 21:56:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457975#M42263</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2011-08-03T21:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457976#M42264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Swingley,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for replying.&amp;nbsp; Here is the code within the initialise function:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;function init() {

 //create extent and set spatial ref use factory code 27700 for BNG
 var urlObject = esri.urlToObject(document.location.href);
 xMin = Number(urlObject.query.StartX) - 1000;
 yMin = Number(urlObject.query.StartY) - 1000;
 xMax = Number(urlObject.query.StartX) + 1000;
 yMax = Number(urlObject.query.StartY) + 1000;
//alert(xMin + ", " + yMin + ", " + xMax + ", " + yMax);

 var startExtent = new esri.geometry.Extent({"xmin":xMin,"ymin":yMin,"xmax":xMax,"ymax":yMax,"spatialReference":{"wkid":27700}});

 //get url containing initial parameters
 //map = new esri.Map("map",{extent:startExtent});
 map = new esri.Map("map",{extent:startExtent, slider:true, logo:false,infoWindow:popup});
 esriConfig.defaults.map.slider = { left:"48px", top:"120px", width:null, height:"200px" };
 
//set map extent and centre point
 popup=new esri.dijit.Popup({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fillSymbol: new esri.symbol.SimpleFillSymbol(esri.symbol.SimpleFillSymbol.STYLE_SOLID, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([255,0,0]), 2), new dojo.Color([255,255,0,0.25]))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, dojo.create("div"));
 
//add base and aerial mapping layers
 maplayer = new esri.layers.ArcGISTiledMapServiceLayer(mapServiceURL);
 aeriallayer=new esri.layers.ArcGISTiledMapServiceLayer(aerialServiceURL);
 map.addLayer(maplayer);
 map.addLayer(aeriallayer);
 
//set default visibility of aerial mapping to false
 aeriallayer.setVisibility(false);
 
//add custom popup
 dojo.place(popup.domNode,map.root);
 dojo.addClass(map.infoWindow.domNode, "sccTheme");
 
//capture extent change event to display zoom level and copyright text
 dojo.connect(map,"onExtentChange", function(extent,delta, outLevelChange, outLod){
&amp;nbsp; dojo.byId("mapscale").innerHTML="&amp;lt;b style='background-color:#C9E0D8'&amp;gt;scale: 1:" + outLod.scale + "&amp;lt;/b&amp;gt;";
&amp;nbsp; maplayer.refresh;
&amp;nbsp; setCopyright(outLod.scale);
&amp;nbsp; mapscale=outLod.scale;
 });
 
//create and add marker layer
 markerLayer = new esri.layers.GraphicsLayer();
 map.addLayer(markerLayer);
 
//create marker symbol and add initial marker to mapp
 symbol = new esri.symbol.PictureMarkerSymbol('./images/defectmarker.png', 30,60).setOffset(0,30)
 markerLayer.add(new esri.Graphic(pt,symbol));
 
//set centre coord and zoom level
 map.centerAt(new esri.geometry.Point(urlObject.query.StartX,urlObject.query.StartY));
 dojo.connect(map,"onLoad",function(){
&amp;nbsp; 
//setCopyright(urlObject.query.Scale);
&amp;nbsp; if(urlObject.query.Scale=="1000"){
&amp;nbsp;&amp;nbsp; map.setLevel(8);
&amp;nbsp; }else if(urlObject.query.Scale=="2000"){
&amp;nbsp;&amp;nbsp; map.setLevel(7);
&amp;nbsp; }else if(urlObject.query.Scale=="4000"){
&amp;nbsp;&amp;nbsp; map.setLevel(6);
&amp;nbsp; }else if(urlObject.query.Scale=="8000"){
&amp;nbsp;&amp;nbsp; map.setLevel(5);
&amp;nbsp; }
 });
 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qTaskAuth=new esri.tasks.QueryTask(mapServiceURL+"/1");
 qAuth=new esri.tasks.Query();
 qAuth.returnGeometry=false;
 qAuth.outFields=["WEBSITE","NAME","AREA_DESC"];

 //create query task task for buffer layer 
 qTaskBuffer = new esri.tasks.QueryTask(mapServiceURL+"/2");
 qBuffer = new esri.tasks.Query();
 qBuffer.returnGeometry=false;
 qBuffer.outFields=["ROADNAME","VILLAGE","POSTTOWN","ESU","ROAD_TYPE","USRN","ROADCLASS","TRUNK","SPNTYPE"];

 dojo.connect(map,"onClick",clickEventHandler);

}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:23:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457976#M42264</guid>
      <dc:creator>DavidMurray</dc:creator>
      <dc:date>2021-12-11T20:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457977#M42265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I can't point to one specific thing in your code but here are a few to check:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-make sure your query string has all the parameters you're using to get an extent&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-define popup before you reference it in your map constructor&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-why are you setting the slider width to null?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-are mapServiceURL and aerialServiceURL defined when this function runs?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-you can specify your aerial layer as not visible when you define it using the optional options object:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
aeriallayer=new esri.layers.ArcGISTiledMapServiceLayer(aerialServiceURL, { visible: false });
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:23:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457977#M42265</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2021-12-11T20:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457978#M42266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for spending some time on topic.&amp;nbsp; I have been through the points you listed and checked or amended my code, but still getting the same IE javascript error.&amp;nbsp;&amp;nbsp; I since debugged the site using the IE developer tools (probably should have done this before posting) and the debug stops at the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;return op?d._setOpacity(n,_1c0):n.style[_1bf]=_1c0;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know in the map service I am calling there is a layer containing a series of images that have a transparency.&amp;nbsp; Maybe this could be the cause of the error? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately my colleague who administrates the map services is on holiday until next, so I can't test my theory just yet &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2011 15:04:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457978#M42266</guid>
      <dc:creator>DavidMurray</dc:creator>
      <dc:date>2011-08-04T15:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457979#M42267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Along with the things Derek mentioned,here are a few more things to check. Firefox and Chrome will deal with things like trailing commas and missing semi-colons at the end of lines but IE will not. In your posted code (around line 54) this line is missing a semi-colon at the end:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
symbol = new esri.symbol.PictureMarkerSymbol('./images/defectmarker.png', 30,60).setOffset(0,30)
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;JSLint is a good tool to use to identify potential issues. The tool will point out lots of issues in the code including missing semicolons and trailing commas.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://www.jslint.com/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.jslint.com/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:23:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457979#M42267</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T20:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457980#M42268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Kelly,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have added the missing semi-colon and checked the code you any other syntax errors, but still getting the same error, it seems to be crashing when I try to initialise the map object.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
var startExtent = new esri.geometry.Extent({"xmin":480000, "ymin":131000, "xmax":544000, "ymax":176000, "spatialReference":{"wkid":27700}});

map = new esri.Map("map",{extent:startExtent, slider:true, logo:false,infoWindow:popup});&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried using just &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;map = new esri.Map("map");&lt;/PRE&gt;&lt;SPAN&gt; and still get the map will not display in IE8.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:23:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457980#M42268</guid>
      <dc:creator>DavidMurray</dc:creator>
      <dc:date>2021-12-11T20:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457981#M42269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you zip up your whole app and post it? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Kelly,&lt;BR /&gt;&lt;BR /&gt;I have added the missing semi-colon and checked the code you any other syntax errors, but still getting the same error, it seems to be crashing when I try to initialise the map object.&amp;nbsp; &lt;BR /&gt; &lt;PRE class="lia-code-sample line-numbers language-none"&gt;
var startExtent = new esri.geometry.Extent({"xmin":480000, "ymin":131000, "xmax":544000, "ymax":176000, "spatialReference":{"wkid":27700}});

map = new esri.Map("map",{extent:startExtent, slider:true, logo:false,infoWindow:popup});&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;I have tried using just &lt;PRE class="lia-code-sample line-numbers language-none"&gt;map = new esri.Map("map");&lt;/PRE&gt; and still get the map will not display in IE8.&lt;BR /&gt;&lt;BR /&gt;Any suggestions?&lt;BR /&gt;&lt;BR /&gt;Many thanks&lt;BR /&gt;David&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:23:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457981#M42269</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T20:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457982#M42270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;My 2 cent: Check if all variables are declared with var. Sometime IE has side-effects if the declaration is missing. If you have declared your map object somewhere else, check if you did it with "var map...". If you once have declared it, don't do it a second time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;HTH. Axel&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2011 07:56:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457982#M42270</guid>
      <dc:creator>AxelSchaefer</dc:creator>
      <dc:date>2011-08-12T07:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457983#M42271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I may have isolated the cause.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I copied the code for the World Topographic sample into a blank page and it worked in IE7 (compatablity mode), IE8 and IE9.&amp;nbsp; When I replaced the URL with the map service I am using and initial extent values it worked in FF, Chrome, and Safari but not IE.&amp;nbsp; So it's possible a setting or layer in my map service is causing the map not to display in IE.&amp;nbsp; One of the layers has a transparency effect but all the others contain map tiles (jpg format).&amp;nbsp; Has anyone come across a map service not displaying because of the settings or the data within it? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am going to create a simple map service with just one layer or map data and see if that works.&amp;nbsp; I'll update the post once this has been done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 12:25:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457983#M42271</guid>
      <dc:creator>DavidMurray</dc:creator>
      <dc:date>2011-08-15T12:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457984#M42272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After some testing and head scratching the error was being caused by a &amp;lt;div&amp;gt; tag in the html.&amp;nbsp; Not sure why it was causing an issue but once removed the site now works in IE. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you to everyone for your advice.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2011 07:24:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457984#M42272</guid>
      <dc:creator>DavidMurray</dc:creator>
      <dc:date>2011-09-02T07:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457985#M42273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello David!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a similar problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Where was your &amp;lt;div&amp;gt; located?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you post this part of the HTML?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Sep 2011 14:38:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457985#M42273</guid>
      <dc:creator>MichaelGinzburg</dc:creator>
      <dc:date>2011-09-25T14:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457986#M42274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It was the &amp;lt;div&amp;gt; located before &amp;lt;div&amp;gt; containing the map.&amp;nbsp; Also there was a transparent style attached to the &amp;lt;div&amp;gt; which may have caused the problem.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is HTML code in my page: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; &amp;lt;div id="resultsContainer" style="display: block; position:absolute; width:750px;left:3px;top:160px;z-index:999999;padding:0px;background:url(images/resultsBG.png) repeat;"&amp;gt; 
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; &amp;lt;!--&amp;lt;div id="resultsHeader" style="display: block; position:absolute; width:100%;left:0px;top:2px;height:20px;z-index:999999;padding:0px;background:url(images/headerbar.png) repeat;"&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;img src='images/cancel.jpg' alt='Close Results' style='position:absolute;right:10px;top:3px;cursor:pointer;' onclick='closeResults();'/&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;--&amp;gt;
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; &amp;lt;div id="map"&amp;gt;&amp;lt;/div&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;div id="panbuttoncontrols" style="position:absolute;left:10px;top:170px;"&amp;nbsp; &amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img id="panup" style="position:absolute;left:34px;top:7px" src="images/panUp_off.png" onClick="javascript:panMap('n')" onMouseOver="togglePanImage('panUp_on')" onMouseOut="togglePanImage('panUp_off')" &amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img id="panright" style="position:absolute;left:58px;top:42px" src="images/panRight_off.png" onClick="javascript:panMap('e')" onMouseOver="togglePanImage('panRight_on')" onMouseOut="togglePanImage('panRight_off')" &amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img id="pandown" style="position:absolute;left:34px;top:62px" src="images/panDown_off.png" onClick="javascript:panMap('s')" onMouseOver="togglePanImage('panDown_on')" onMouseOut="togglePanImage('panDown_off')" &amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img id="panleft" style="position:absolute;left:0px;top:42px" src="images/panLeft_off.png" onClick="javascript:panMap('w')" onMouseOver="togglePanImage('panLeft_on')" onMouseOut="togglePanImage('panLeft_off')" &amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:23:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457986#M42274</guid>
      <dc:creator>DavidMurray</dc:creator>
      <dc:date>2021-12-11T20:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457987#M42275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For what it's worth, I was getting the same error with the following line in IE 8:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;map.infoWindow.resize(135, 35);&lt;/SPAN&gt;&lt;SPAN&gt;[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I changed it to this to fix it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;dojo.style(dojo.byId('map_infowindow'), "height", "35px");&lt;/SPAN&gt;&lt;SPAN&gt;[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]&lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;dojo.style(dojo.byId('map_infowindow'), "width", "135px");&lt;/SPAN&gt;&lt;SPAN&gt;[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Blair&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 21:27:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457987#M42275</guid>
      <dc:creator>BlairShaman</dc:creator>
      <dc:date>2012-04-19T21:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: IE8 error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457988#M42276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm running into a similar issue. The weird thing is that this error only occurs when the page is loaded from the website. If I run the code locally on my machine, and connect via localhost, the page loads and no errors are thrown.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once the page is uploaded to the web machine and I try to view it from my browser, I receive these errors on IE's console:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; 'this._div' is null or not an object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Error: Invalid argument.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Error: Invalid argument.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The map layers never load, but the basic layout does. I checked all of my &amp;lt;div&amp;gt; tags and there aren't any extras, nor are any missing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What's the best method to try and figure this out? I've been using JSLint to find any errors, including missing semicolons, but using IE's debugger is a pain. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Dec 2012 14:22:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/ie8-error/m-p/457988#M42276</guid>
      <dc:creator>AndrewBrown1</dc:creator>
      <dc:date>2012-12-20T14:22:59Z</dc:date>
    </item>
  </channel>
</rss>

