I have a few lines of code where I use this function, but it seems to only find the 1st element in IE7. Works in IE8/FF/Chrome.
$(document).find("#JobID").attr('checked', $('#CheckAll').is(':checked'));
I also have a similar line which only finds the first element.
$(document).find("#JobID").each(function() { ... }
Does anyone know if this is a known bug or a workaround? Maybe I'm not using the proper method?