Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>

http://g2mtechnologies.com/index.php/products/loneresq

share|improve this question
3  
try moving the </html> tag to the bottom of your code – wirey Sep 6 '12 at 23:37
Message: Access is denied. Line: 130 Char: 246 Code: 0 URI: g2mtechnologies.com/media/widgetkit/js/jquery.js – Musa Sep 6 '12 at 23:39
It looks like $("#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
Good catch, @wirey. There's another </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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.