0
I made a button to open a configuration screen, when I click open the screen, and the button changes from "Setup" for "Come back", until then beauty, but I would like that when it clicked again, this writing again "Setup".
Can anyone help me? Preferably at jQuery.
$("#settings").hide();
$("#principal").show();
$("#config").click(function(){
$("#settings").toggle();
$("#principal").toggle();
$(this).html("Voltar");
Thank you Master Valdeir Psr, it worked perfectly.
– Wagner Flavia Macedo