[jQuery] Changing styles new added elements.
I am adding new tables by using ajax. I want to colorize table rows at
first.
I can do it with livequery like that:
$('tr:odd').livequery(function(){
$(this).css('background-color', '#eee');
});
or this could be done in ajax success function.
I want to do it with jquery live function or other vay(not using extra
plugin)
Thanks.