Skip to content

Instantly share code, notes, and snippets.

@andrexduarte
Last active December 12, 2015 04:38
Show Gist options
  • Save andrexduarte/4715547 to your computer and use it in GitHub Desktop.
Save andrexduarte/4715547 to your computer and use it in GitHub Desktop.
$(".more").click(function() {
var txt = $(".clip").is(':visible') ? 'Saiba mais' : 'Esconder';
$(".more").text(txt);
$(".clip").slideToggle();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment