All pastes #2107170 Raw Edit

Something

public text v1 · immutable
#2107170 ·published 2012-01-28 22:14 UTC
rendered paste body
$('form').submit(function(){
	$(':input[name="updated[]"', this).each(function () {
		var id = $(this).attr('class');
		if($(':input[name="updated[]"').is('checked')){
			//Do nothing.
		} else {
			$(':input[class="'+id+'"]').attr('disabled', true);
		}
	});
});