$(document).ready(function() { // Hide and reveal contents of DIVs when a preceeding sibling header is clicked // Headers have class "expandable-header" // Content div has class "expandable-content" $(".expandable-header").addClass("clicking-cursor"); $(".expandable-content").hide(); $(".expandable-header").click(function(){ $(this).siblings(".expandable-content").eq(0).toggle(250); }); });