I have code like this
if ($('#chkCheckAll').is(':indeterminate') == true)
{
}
But it is throwing exception in ie 8
what can do instead of this in Jquery to work with ie8
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.
Use this instead:
The problem is that ‘:indeterminate’ pseudo-expression is not supported by IE8
querySelectorAllimplementation. But in your case, it’s actually not required to use it, as you can query the corresponding property of DOM element itself