Maybe I am doing something wrong here but according to the docs this 'should' work in all IE versions except 6.
Examples :
$("#gallery > img").css();
$("#gallery").children("img").css()
Even tried $("#gallery").find("img").css()
None of those methods will work in all versions of IE(even 8). Works just fine in FF, Safari, etc...
Is there a work around or another method of selecting the children of a selector in IE? I would really like to not have to add extra classes to those images just to select them.