[jQuery] Jquery this keyword to show the current clicked div class

[jQuery] Jquery this keyword to show the current clicked div class


I am new to Jquery and I need to use the this keyword to differentiate
which div class name needs to show.
Currently, my code below on '.bioclick' click event, every bio_desc is
displayed or showed. I just want to show the current clicked
'.bioclick' child '.bio_desc'. I tried using the this keyword but it
did not work. Please help with my code below.
$('.bio_desc').hide();
$('.bioclick').click(function() {
$('.speaker_wrapper').children('.bio_desc').toggle
('slow');
});
});