It's a bit moot point but I'm still curious why the two following lines aren't equivalent.
$("#boink").selectionStart = 3;
document.getElementById("boink").selectionStart = 3;
The working example comes from this question. For some reason, the jQuery fetched control doesn't have the property selectionStart nor selectionEnd.
What should be used instead if I'm still going to apply jQuery selectors?