Answers for "if exist element"

8

js element exists

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');
}
Posted by: Guest on February-02-2021
1

check if the element exists in javascript

var myEle = document.getElementById("myElement");
    if(myEle){
        var myEleValue= myEle.value;
    }
Posted by: Guest on February-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language