Skip to content

Instantly share code, notes, and snippets.

@hron84
Created June 11, 2014 20:38
Show Gist options
  • Save hron84/fd9d71a2b562230b74eb to your computer and use it in GitHub Desktop.
Save hron84/fd9d71a2b562230b74eb to your computer and use it in GitHub Desktop.
Toggler
jQuery(
function() {
$('a#info-button').on('click', function(e) {
var infodiv = 'div#info-content'
$(infodiv).toggle();
if($(infodiv).is(':visible')) {
$(this).html('Hide')
} else {
$(this).html('Show')
}
})
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment