Показать сообщение отдельно
  #1 (permalink)  
Старый 14.04.2018, 13:37
Аспирант
Отправить личное сообщение для AnthonyFink Посмотреть профиль Найти все сообщения от AnthonyFink
 
Регистрация: 14.10.2017
Сообщений: 31

classList.remove() не удаляет класс
что делаю не так ?
newNote();
function saveToDo(){
	// take date of new note
	var date = new Date()
	// take note
	var getId = date.getTime();
	var getNote = document.getElementById('todobox').value;
	var futureDate = document.getElementById('future_date').value;
	var errorMessage = document.getElementById('error_message');
	// validation for empty textarea

	if (getNote === "") {
		errorMessage.innerText = 'You must write something in description';
		errorMessage.classList.remove("error_text");
        return false;
        }else if(futureDate === ""){
        errorMessage.innerText = 'You must write date';
        errorMessage.classList.remove("error_text");
        return false;
        }
Ответить с цитированием