Answers for "jquery test if div contatins test"

4

jquery test div exists

$(document).ready(function() {
    var $myDiv = $('#DivID');

    if ( $myDiv.length){
        //you can now reuse  $myDiv here, without having to select it again.
    }


});
Posted by: Guest on March-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language