Показать сообщение отдельно
  #2 (permalink)  
Старый 04.02.2010, 15:14
Интересующийся
Отправить личное сообщение для Nicko Посмотреть профиль Найти все сообщения от Nicko
 
Регистрация: 15.03.2009
Сообщений: 12

window.onload = function() {
  var box = document.getElementById('secuCodeMc3');
  box.onchange = function() {
    var button = document.getElementById('mchatBtn')
    if (this.checked) {
      button.style.display = 'none';
    } else {
      button.style.display = '';
    }
  }
}



// Или через jQuery
$(function() {
  $("#secuCodeMc3").change(function() {
    var button = $("#mchatBtn");
    if (this.checked) {
      button.hide();
    } else {
      button.show();
    }
  });
});
Ответить с цитированием