Home » 
        MCQs » 
        jQuery MCQs
    
        
    Which is the correct jQuery selector to select all elements?
    
    
    
    17. Which is the correct jQuery selector to select all elements?
    
        - $("all")
 
        - $("*.*")
 
        - $("*")
 
        - $("***")
 
    
    Answer: C) $("*")
    Explanation:
    The $("*") selector is used to select all elements.