1. Question: Which is JQuery factory function?

    A
    $()

    B
    (function(){ })

    C
    ${}

    D
    $(this)

    E
    $(){}

    Note: Not available
    1. Report
  2. Question: The factory function $() is a synonym of

    A
    JQuery()

    B
    $j()

    C
    $(function(){})

    D
    $(document);

    E
    none

    Note: Not available
    1. Report
  3. Question: What do you mean by JQuery selector $("strong+em")?

    A
    Selects all elements matched by <em> that immediately follow a sibling element matched by <strong>

    B
    Selects all elements matched by <em> that immediate sibling element matched by <strong>

    C
    Selects all elements matched by <em> that are children of <strong>

    D
    Selects all elements matched by <em> that are descendants of <strong>

    Note: Not available
    1. Report
  4. Question: What do you mean by JQuery selector $("p~ul")?

    A
    Selects all elements matched by <ul> that follow a children element matched by <p>

    B
    Selects all elements matched by <ul> that follow a parent element matched by <p>

    C
    Selects all elements matched by <ul> that follow a sibling element matched by <p>

    D
    Selects all elements matched by <ul> that follow a descendant element matched by <p>

    Note: Not available
    1. Report
  5. Question: What do you mean by JQuery selector $("a[@rel]")?

    A
    Selects all elements matched by <a> that have a rel attribute.

    B
    Selects all elements matched by <a> that do not have a rel attribute.

    C
    Selects all elements matched by <a> that have a @rel attribute.

    D
    Selects all elements matched by <a> that do not have a @rel attribute.

    Note: Not available
    1. Report
  6. Question: What do you mean by JQuery selector $(":parent")?

    A
    Selects all elements that are the parents of another element, including text.

    B
    Selects all elements that are the parents of another element.

    C
    Selects all elements that are the parents of another element, including media.

    D
    None

    Note: Not available
    1. Report
  7. Question: Which of the following selector selects all elements matched by <a> that have an href value containing domain.com?

    A
    a[@href*=domain.com]

    B
    a[@href=domain.com]

    C
    a[@href:domain.com]

    D
    a[@href=*domain.com]

    Note: Not available
    1. Report
  8. Question: Which of the following selector selects all checked boxes in the form?

    A
    $("checked")

    B
    $(":checked")

    C
    $("input[checked]")

    D
    $("input[checked=checked]")

    Note: Not available
    1. Report
  9. Question: Which of the following selector is used to select only form elements?

    A
    $(":input")

    B
    $("input[type=*]")

    C
    $(":input[type*=]")

    D
    $(":input[type]")

    Note: Not available
    1. Report
  10. Question: Which of the following selector is used to select all elements that have no children?

    A
    $(":empty*")

    B
    $(":empty")

    C
    $("empty")

    D
    $(":empty?")

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd