Why my overlay 'p' (bg purple with yellow text) is showing only once after button clicked, even if I have toggle the function?
Have a look to my codepen to test the issue:
https://codepen.io/cat999/project/editor/AEeEdg
$('.animate-this').click(function() {
$('p').slideToggle("fast");
});
Easy way to fix this?
If you click i need to show up again!
– Elron May 23 '20 at 16:14