Hi I am trying to get all hidden fields on page with jQuery which have class name that I specify and have value of true. For this I am using following jQuery selector
$("input[class='EditModeStatus'][value='true']");
Here I want to get all hidden fields with class name "EditModeStatus" and have value of "true". This selector works fine in Mozilla and Chome but when I am testing it in IE8 it's not working. What will be issue in this?
Thanks