Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

button not exist js

<div id="test">Example DIV element.</div>
 
<script>
    //Attempt to get the element using document.getElementById
    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!');
    }
</script>
Source by thisinterestsme.com #
 
PREVIOUS NEXT
Tagged: #button #exist #js
ADD COMMENT
Topic
Name
3+3 =