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