When referencing an HTML element using jQuery preceded by a # , what JavaScript function is this equivalent to?
Answer options
A
True
B
False
Correct answer: True
Explanation
TRUE — Using # in jQuery (e.g., ) is the equivalent of document.getElementById("myId") in plain JavaScript. Both select an element by its unique id attribute.