لدي كود يقوم بتحرير كل صف بشكل مستقل في جدول، أريد تغير طريقة عمله بحيث لو أضغط تحرير يتم إتاحة التعديل على كامل الجدول وليس صف واحد فقط، فعملية الضغط على تحرير في كل صف متعبة وتأخذ وقت.

$('.editbtn').click(function() {
	var $this = $(this);
	var tds = $this.closest('tr').find('td').filter(function() {
		return $(this).find('.editbtn').length === 0;
	});
	if ($this.html() === 'Edit') {
		$this.html('Save');
		tds.prop('contenteditable', true);
	} else {
		$this.html('Edit');
		tds.prop('contenteditable', false);
	}
});