I am having trouble with performance in IE and I am doing a large loop that has this selector:
td:not(.some-cell)
Is there a more efficient way to do this in IE?
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.
IE8 does not support
:notselector natively, so if you are using pure-script selectors engine like Sizzle built-in to jQuery, it may be performance issue due to slow pure-script search through all elements.Most simple solution is to mark each that
TDelement with a specific class on server side, and then select them just with class selector.