Scenario: you have elements in your document and you need to change their color, background, or something else related to its style. For example, highlight table rows on mouse over, or mark then when corresponding checkbox is checked.
And again I know two ways: using styles or set color (or background color) directly from JavaScript. Let’s [...]
JavaScript optimization: Applying styles to elements
JavaScript optimization: Adding DOM elements to document
Scenario: you’re developing rich Web application and you need to load dynamic elements using AJAX and then add them to current document. For some reason you don’t want (or can’t) use fully generated HTML, and decided to fetch items in JavaScript array.
I know two classic ways to do so: create elements using document.createElement() method and [...]
Writing User Stories
Andrew recently recommended a good article on user stories in XP Projects. It was written by Granville Miller. Although this process is not the best fit for our virtual team, I gained some insight from the concepts on team Velocity and keeping estimates under control.

