I just started my very first JavaScript tutorial couple of days ago. I've come to the point where they explain the use of libraries. Two questions in mind thus far:
getElementByIdis implemented as$("#id")in jQuery and as$("id")in Prototype. Why the inconsistency?If both libraries are included, how can the browser decide which object should be returned for
$("")?