When I click on the Reply link, the code does not execute, it does not show the jQuery alert or the function, it does not show an error in the console, it does not even execute.
$('#post-forum').last().append('<div><a href="#" id="responder" >Responder</a></div>');
$('#responder').on('click', function (event) {
// alert('teste');
teste();
event.preventDefault();
});
function teste() {
alert('teste');
}