Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/03/2015, 14:05
Avatar de besotico
besotico
 
Fecha de Ingreso: junio-2008
Ubicación: Iquique, Chile, Chile
Mensajes: 70
Antigüedad: 15 años, 10 meses
Puntos: 0
Respuesta: Agregar Estilos Extras mediante PHP

Tal como dice hhs este tema es para JavaScript, pero aquí tu solución

Código Javascript:
Ver original
  1. $('#Checkbox1).on('change', function () {
  2.  
  3.    if ($('#Checkbox1').is(':checked') ) {
  4.        $('#div').css('display', 'none');
  5.    } else {
  6.        $('#div').css('display', 'yes');
  7.    }
  8. });

saludos :)