My application works fine for me, but I would LOVE to be able to fully test it on W3.
My problem is pretty simple. I am using the Bing JS API to attach a Bing Map to a div tag. Inside this div tag, I have an element <noscript>that calls the static map provider MultiMap. IF javascript is disabled. The reason I decided to do this is because I don’t want to call the MultiMap API if I am not going to actually use it.
Is there an alternative way to do this so that I can be W3 HTML5 valid?
<div id='bingMap' class="largeMap">
<noscript>
<img src="http://developer.multimap.com/API/map/1.2/xxxxxxxxxxxxxxx?zoomFactor=11&width=550&height=400&lat_1=51.18468&lon_1=-114.497999&lat_2=51.169858&lon_2=-114.32549&lat_3=51.083277&lon_3=-114.203964&lat_4=51.063097&lon_4=-114.092031&lat_5=50.939664&lon_5=-113.973568" />
</noscript>
</div>
source
share