The example below works in chrome and fire fox.
Both renders the text red.
Why does IE9 fail?
Here is an example:
<style>
.tableX td
{
color:red;
}
</style>
<table class='tableX'>
<tr>
<td>
My Text
</td>
</tr>
</table>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For some odd reason my browser had gone into a weird mode. Must have tested too many new HTML5 features :-{ Anyways it works after restarting the browser. Thank god i didn’t spend more than three hours on it. Yikes.
Was my initially thought.
However the problem is caching related.
To prevent IE from caching the AJAX request, i have added a variable to the querystring containing a random number, like below:
queryString + “?comonIE=” + MATH.random().toString().slice(2)