Skip to content

Instantly share code, notes, and snippets.

@jacks0n
Created August 4, 2016 22:50
Show Gist options
  • Save jacks0n/e111d16750561a80e54e5e834d2597a1 to your computer and use it in GitHub Desktop.
Save jacks0n/e111d16750561a80e54e5e834d2597a1 to your computer and use it in GitHub Desktop.
Bookmarklet to hide the Drupal admin menu.
// Generated with http://chriszarate.github.io/bookmarkleter/
javascript:void%20function(){(function(n){n(%22%23admin-menu,%20.header-wrap%22).hide(),n(%22body.admin-menu%22).css(%22cssText%22,%22margin-top:%200%20!important%22)})(jQuery)}();
(function($) {
$('#admin-menu, .header-wrap').hide();
$('body.admin-menu').css('cssText', 'margin-top: 0 !important');
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment