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
Quick AnswerThe correct answer is True because it directly addresses the core logic of Web Technology.
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.