Skip to content

Instantly share code, notes, and snippets.

@bluemango
Created June 9, 2016 01:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bluemango/12c91ea4ab8d41c51cf438d034f3d0b5 to your computer and use it in GitHub Desktop.
Save bluemango/12c91ea4ab8d41c51cf438d034f3d0b5 to your computer and use it in GitHub Desktop.
Expand foldable section.js
$(document).ready(function($) {
if (window.location.hash) {
var anchor = window.location.hash;
var el = $(anchor);
var parents = $(el).parents('.nested-article');
$(parents).show();
$(parents).prev().addClass('expanded');
location.hash = null;
location.hash = anchor;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment