The following script below is not running in IE7 but works perfectly fine in IE 8 + 9 and ALL other browsers. Even putting in the alert("something");
does not work - I have another script that is working fine and that is running in IE 7 perfectly.
<script type="text/javascript" src=".js"></script>
Am I missing a DOCTYPE? Here is the script below;
var formPageTitle = $("div.hsRadarform td h3").text();
$('.AspNet-DataList td a').each(function (index) {
var listElementText = $(this).text();
var shade = "faint";
if(formPageTitle.toLowerCase() == listElementText.toLowerCase()) {
shade = "dark";
}
//adding the numbered circles here using jQuery
$(this).css({
'background-image': 'url(/assets/img/radarstep' + (index + 1) + shade + '.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px',
});
});
The following script below is not running in IE7 but works perfectly fine in IE 8 + 9 and ALL other browsers. Even putting in the alert("something");
does not work - I have another script that is working fine and that is running in IE 7 perfectly.
<script type="text/javascript" src="http://code.jquery./jquery-latest.js"></script>
Am I missing a DOCTYPE? Here is the script below;
var formPageTitle = $("div.hsRadarform td h3").text();
$('.AspNet-DataList td a').each(function (index) {
var listElementText = $(this).text();
var shade = "faint";
if(formPageTitle.toLowerCase() == listElementText.toLowerCase()) {
shade = "dark";
}
//adding the numbered circles here using jQuery
$(this).css({
'background-image': 'url(/assets/img/radarstep' + (index + 1) + shade + '.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px',
});
});
Share
Improve this question
edited Dec 2, 2011 at 13:47
Rory McCrossan
338k41 gold badges320 silver badges351 bronze badges
asked Dec 2, 2011 at 13:41
mjcodermjcoder
1,0119 gold badges27 silver badges46 bronze badges
2
- @Daniel A. White none being picked up in FF – mjcoder Commented Dec 2, 2011 at 13:47
- 2 @c-sharpnewbie see this -> stackoverflow./questions/7246618/… – Manse Commented Dec 2, 2011 at 13:54
1 Answer
Reset to default 14IE is very picky with trailing mas :
$(this).css({ 'background-image': 'url(/assets/img/radarstep' + (index + 1) + shade + '.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px',
});
Should be
$(this).css({ 'background-image': 'url(/assets/img/radarstep' + (index + 1) + shade + '.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px' // ma removed
});