Skip to content

Instantly share code, notes, and snippets.

@JoaoVagner
Last active August 29, 2015 13:57
Show Gist options
  • Save JoaoVagner/9768351 to your computer and use it in GitHub Desktop.
Save JoaoVagner/9768351 to your computer and use it in GitHub Desktop.
$(".btn").click(function(e){
e.preventDefault();
novo_link = 'http://www.site.com.br/site';
$(this).text("Novo Texto do btn").attr({
class: "btn-add",
href: "novo_link"
});
window.location = novo_link;
});
Ou
$(".btn").click(function(e){
e.preventDefault();
$(this).text("Novo Texto do btn").attr({
class: "btn-add",
href: "novo_link"
});
window.location = $(this).attr('href');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment