次の javascript/jquery スニペットは、DOM 内の現在一致しているすべての要素に css を適用します。
$('.centeredByJquery').each(function(){
$(this).css({'margin-left': -parseInt($(this).css('width'))/2,
'left':'50%',
'margin-top': -parseInt($(this).css('height'))/2,
'top':'50%'});
})
このメソッドを将来のすべての一致する要素にも適用するにはどうすればよいですか?