Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('.abrir-modal').click(function(){
- $('.modal').toggleClass('active');
- var condicao = $('.modal').hasClass('active');
- if(condicao){
- $(this).text("fechar Modal");
- }else{
- $(this).text("Abrir Modal")
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement