On Dec 30, 2007 12:16 PM, tetrix <[EMAIL PROTECTED]> wrote: > > so no one knows how to do this simple thing? >
If you want to perform the same function on more then one element, just assign a common class and use the appropriate jQuery selector. <img class="fade" src="x.jpg"> <img class="fade" src="y.jpg"> <img class="fade" src="z.jpg"> $(window).load( function () { $('.fade').fadeOut(4000); }) This should work afaik. -- Jeroen