I m trying to enable, disabled controls by clicking edit button but I could not access it using jQuery delegate function.Here is code:
$('#table-view-task').delegate('tr:not(:first)','click', function(){
var id = $(this).find('td:first').text();
var task = $(this).find('td:eq(1)').text();
$(this).popover({
html: true,
delay: { show: 0, hide: 0 },
title: function () {
return '<div>'+task+'</div>';
},
content: function () {
return '<div id="pop-container">'+
'<label>ID</label>'+
'<input type="text" value="'+id+'" id="txt-edit-id" disabled/>'+
'<label>Task</label>'+
'<input type="text" value="'+task+'" id="txt-edit-task" disabled/>'+
'<a href="#" class="btn" id="btn-edit-task">Edit</a>'+
'<a href="#" class="btn" id="btn-save-task">Save</a>'+
'</div>';
}
});
});
This prints popover properly with all html elements.How to access those elements with jquery. So how to access edit link.Here is how I m trying to do that:
$('#pop-container').delegate('a','click', function(){
alert('editing');
});