I have an issue with Internet Explorer reading a simple image selector script.
Any help would be appreciated.
Here is the link to the actual site Link - Device compatibility
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" >
$(function(){
$('#storeDrop').change(function(){
//get value
var imgDisplay = $("#storeDrop").val();
//url to image
var swapUrl = $('select option:selected').attr("imgUrl");
//display value in console
console.log('change: '+swapUrl);
//change src value for div id #image
$("#image").attr("src",swapUrl);
return false;
});
});
</script>
</head>
</html>
<form>
<select id="storeDrop" name="option[61]"><option value="">------ Please Select Device ------</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/Android.png" value="1286">Android</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/blackberry_non_GPS.png" value="1416">BlackBerry Non GPS</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/blackberryGPS2.png" value="1416">BlackBerry GPS</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/Identicom_non_GPS.png" value="1329">Identicom non GPS</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/IdenticomGPS.png" value="1303">Identicom GPS</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/iphone3.png" value="1445">Iphone 3</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/iphone4.png" value="1274">Iphone 4</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/NokiaBasic.png" value="1390">Nokia Basic</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/NokiaS60.png" value="1208">Nokia s60</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/Windows_Mobile_6.png" value="1304">Windows Mobile 6.x</option>
<option imgurl="http://g2mtechnologies.com/images/check_device/Windows_Mobile_7.png" value="1212">Windows Mobile 7</option>
</select>
</form><!--google analytics-->
<p> <img id="image" src="images/check_device/Android.png"></p>
</html>tag to the bottom of your code – wirey Sep 6 '12 at 23:37$("#image").attr("src", "URL")doesn't do anything in IE9. I try it in the JavaScript console and it doesn't do anything, either. – Barmar Sep 6 '12 at 23:46</html>at the bottom. It looks like he inserted one complete web page into another, because there are also two<head>sections, but only one<body>. This is probably what's confusing IE. – Barmar Sep 6 '12 at 23:51