Daniel Correia Posted October 11, 2011 Report Share Posted October 11, 2011 olá amigos, sou niciante em javascript e queria saber como fazer um botão seguir igual o do twitter,quando você clica em seguir ele muda para seguindo, e quando você clica em deixar de seguir ele muda para seguir?obrigado!!! Quote Link to comment Share on other sites More sharing options...
0 Tenko Posted October 13, 2011 Report Share Posted October 13, 2011 Boa tarde.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>teste</title><script>function muda(oObj){ oObj.className = ( oObj.className == 'btSeguir' ) ? 'btNSeguir' : 'btSeguir' ; oObj.innerHTML = ( oObj.className == 'btSeguir' ) ? 'Seguir' : 'Seguindo' ;}</script><style>.btSeguir{ font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; text-transform: capitalize; color: #000000; text-align: center; vertical-align: middle; height: 25px; width:10%; border: 1px dashed #000000; cursor:pointer;}.btNSeguir{ font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; text-transform: capitalize; color: #0066CC; text-align: center; vertical-align: middle; height: 25px; width:10%; border: 1px dashed #000000; background-color: #DDF4FF; cursor:pointer;}</style></head><body><button class="btSeguir" onClick="muda(this);">Seguir</button></body></html> Quote Link to comment Share on other sites More sharing options...
Question
Daniel Correia
olá amigos, sou niciante em javascript e queria saber como fazer um botão seguir igual o do twitter,
quando você clica em seguir ele muda para seguindo, e quando você clica em deixar de seguir ele muda para seguir?
obrigado!!!
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.