"Must have a sound understanding of programming in JavaScript that extends beyond jQuery"
// jQuery
$('div:first')
// DOM API
document.querySelector('div')
// jQuery
$(':button')
// DOM API
document.querySelectorAll('BUTTON, INPUT[type="button"]')
// jQuery
$(':password')
// DOM API
document.querySelectorAll('INPUT[type="password"]')
$ = function(selectorString) {
return document.querySelectorAll(selectorString)
}
@RayNicholus
rnicholus