Skip to content

Instantly share code, notes, and snippets.

@JacobLett
Created September 24, 2015 18:10
Show Gist options
  • Save JacobLett/e2889aea6a2de653b822 to your computer and use it in GitHub Desktop.
Save JacobLett/e2889aea6a2de653b822 to your computer and use it in GitHub Desktop.
Check to see if all child elements are display none - if so hide the parent container jQuery
// Checks to see if the competitions box is empty
if ( jQuery("#sidebar #primary .textwidget a").css("display") == "none" ) {
jQuery('#sidebar #primary').remove();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment