I'm using a complex selector, and it works fine in Chrome and Firefox et al. but in Internet Explorer 8 it fails. I haven't tested it in older versions yet.
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
<html>
<head>
<title>Title</title>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'> </script>
<script type='text/javascript'>
$(function(){
$('span[style*="left:20px"][style*="width:100%"]').css({color:'red'});
$('#first').css({color:'blue'});
});
</script>
</head>
<body>
<span id='first' style='left:20px; width:100%;'>Should be red</span>
<span id='second' style='left:30px; width:100%;'>Should be blue</span>
</body>
</html>
To just put it in context, no, I can't add classes or IDs to the spans because the spans won't always be in the same spots, and I need to adjust the CSS based on their position (for other, uninteresting reasons, I can't edit the code to move them) , and I can't use external styles.
Is there something I'm missing to make this work in IE, and if not can you propose a work around?
Here's a JSFiddle http://jsfiddle.net/RMzuh/1/