Показать сообщение отдельно
  #4 (permalink)  
Старый 20.01.2009, 22:33
Отправить личное сообщение для Octane Посмотреть профиль Найти все сообщения от Octane  
Регистрация: 10.07.2008
Сообщений: 3,873

window.onload = function() { // выполнить после загрузки документа

…

/*@cc_on

    if(@_jscript_version < 5.8) { // только для IE6—7

        var search = document.getElementById('searchInput');

        search.onblur = function() {
            this.style.color = '#f00';
            if(!this.value) this.value = this.title;
       };

        search.onfocus = function() {
            this.style.color = '#00f';
            if(this.value == this.title) this.value = '';
        };
    }

@*/

…

};

Последний раз редактировалось Octane, 20.01.2009 в 22:43.
Ответить с цитированием