I am trying to find the next div after an input button and toggle it.
What am I doing wrong?
JS:
$(\".showNextExperience\").click(function() {
Simply:
$(".showNextExperience").click(function() { $(this).next(".experience").toggle(); });
See: