Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/05/2016, 05:45
Avatar de xfxstudios
xfxstudios
 
Fecha de Ingreso: junio-2015
Ubicación: Valencia - Venezuela
Mensajes: 2.448
Antigüedad: 8 años, 10 meses
Puntos: 263
Respuesta: Botón contador

Asi:

Código HTML:
Ver original
  1. <input type="button" id="bt" value="0">

Código Javascript:
Ver original
  1. $(document).ready(function(){
  2. $("#bt").click(function(){
  3.     if( $(this).val() == 0 ){
  4.     $(this).val(1);
  5.   }else{
  6.     $(this).val(0);
  7.   }
  8. })
  9. })

Muestra: https://jsfiddle.net/tf9a099y/
__________________
[email protected]
HITCEL