View on GitHub

reading-notes

Reading Notes about Markdown-Html-Css-JavaScript

jQuery(Write less, do more)

jquery

Why use JQuery

The position of elements can affect how quickly a web page seems to load.

BASIC EFFECTS:

DOM

The HTML DOM is an Object Model for HTML. It defines:

HTML elements as objects

Properties for all HTML elements

Methods for all HTML elements

Events for all HTML elements

The HTML DOM is an API (Programming Interface) for JavaScript:

JavaScript can add/change/remove HTML elements

JavaScript can add/change/remove HTML attributes

JavaScript can add/change/remove CSS styles

JavaScript can react to HTML events

JavaScript can add/change/remove HTML events

Some OF Pair Programming Advantages

If the driver encounters a hitch with the code, there will be two of them who’ll solve the problem.

Common thinking is that it slows down the project completion time because you are effectively putting two programmers to develop a single program, instead of having them work independently on two different programs. But studies have shown that two programmers working on the same program are only 15% slower than when these programmers work independently, rather than the presupposed 50% slow down.

Collaborating on a single project helps your team to appreciate the value of communication and teamwork.