1
I am building a comment system and I would like a reply form to appear when I click on a button. The problem is that there is a response form for each comment, and I would like it only to appear the element response form that I clicked on. Follows the base of the code, being "answer" the class of the button to call the form "formularyRespose".
$(document).ready(function(){
$(".resposta").click(function(event){
event.preventDefault();
$(.formularioResposta).addClass('selecionado');
$(".selecionado").show(3000);
});
});