$('#div_id a').attr('rel', 'hello world');
// если атрибуты нужны разные
$('#div_id a').each(function(){
$(this).attr('rel', 'any value');
});
Revisit-after: 7 days
<meta name="revisit-after" content="7 days">
Last-Modified:
<meta name="date" content="2005-08-01">
<META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
$('.checkbox').change(function(){
$('input[name="' + $(this).attr('name') +'"]').removeAttr('checked');
$(this).prop('checked', true);
});
$('#child').on('event', function(event){
event.stopPropagation(); // запрещает дальнейщую передачу события
// обработка события
});