Как я могу объединить следующее с делегатом в jQuery?
У меня есть #commentContainer
, окружающий все редактируемые элементы, и я динамически добавляю редактируемые поля (Jeditable).возможность редактирования не работает для динамически загружаемых элементов.
/* Bind Jeditable instances to "edit" event. */
$(".edit").editable('/Comment/PostComment/', {
type: 'textarea',
cancel: 'Cancel',
submit: 'OK',
indicator: '<img src="img/indicator.gif">',
tooltip: 'Click to edit...',
event: "edit"
});
/* Find and trigger "edit" event on correct Jeditable instance. */
$(".edit_trigger").bind("click", function () {
$(this).prev().trigger("edit");
});