What is the difference between a jQuery object and a native browser document object? and how would that apply to the following code?
<div id=”myid”> This is the div you want to select <div>
document.getElementById(“myid”)
$(“#myid”)
$(“#myid”).get(0)
Was wondering if someone could help me understand this?