This document summarizes front-end technologies including KnockoutJS, jQuery, SCSS/Compass, and responsive web design (RWD). It provides an overview of MVVM patterns in KnockoutJS, examples using data binding and observable arrays. It also covers jQuery and jQuery UI, how to import and use them for DOM manipulation and UI widgets. Lastly it discusses using SCSS/Compass for stylesheets and responsive design techniques like Bootstrap grids and the SUSY framework.
24. jQuery Selector
$("div") //all div
$("input.box") //input with 'box' class
$("p#John") //p with 'John' Id
$("[href='#']") //elements with "href='#'"