jQuery - Finding next Div
Simply:
$(".showNextExperience").click(function() {
$(this).next(".experience").toggle();
});
See:
- http://api.jquery.com/toggle/
- http://api.jquery.com/next/
$(".showNextExperience").click(function() {
$(this).next().show();
});