jQuery library includes sizzle, uses CSS selectors to easily select DOM elements.
jQuery or $ is the jquery object, I avoid $, it can cause collisions, using noConflict; syntax for object is jQuery( selector ).chainedMethod.
method css( property name ) or css( property name, property value ) or css( { property name: property value, ... } )
Color Review, #rrggbb, or #rgb or CSS3 Color Name
Table 1.1 Basic Selectors Examples
HTML Core attributes
available for all HTML tags, attribute name = attribute value
attribute name set by W3C, e.g.: id, class, title
Each element on a page should have a unique id, id value is a standard identifer
identifier case sensitive, number after first letter can use underscore or camel casing
with quotes you can use spaces and other non standard characters - best to stick with convention,
first paragraph can be identified using id="paragraph_1", or DOM p:first selector
class="redLine" group of tags; css we use .redLine
Select extraction folder user DW Replace src="../inc/jquery-1.7.2.js" with exact src in this file src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"
Red+Green is Yellow but can use css color name yellow
Remember $('selector') selects an HTML element or elements,
We have been chaining the .css method, but you can use .addClass( 'className' ); which adds a class name to the element