“Существует элемент JS” Ответ

Элемент JS существует

var element = document.getElementById("test");
    //If it isn't "undefined" and it isn't "null", then it exists.
if(typeof(element) != 'undefined' && element != null){
    alert('Element exists');
} else{
	alert('Element does not exist');
}
dvnb

Существует элемент JS

if ($('#element').length) {
	//Checks if element exists
}
Armandres

Ответы похожие на “Существует элемент JS”

Вопросы похожие на “Существует элемент JS”

Больше похожих ответов на “Существует элемент JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования