- TDAmeritrade
- A2C – “Associate-2-Client” call center dashboard.
- As the conversion from TDA to Schwab was
Front-End Web Development Questions – David Shariff
- Execution context references the ‘environment’ a function executes in; that is, variable scope
Header Scroll Transition and the Will-Change Property
Recently I needed to make an animated header that slides up when you scroll down … Read more
Three ways to use Modernizr
In the CSS:
.no-cssgradients .header {
background: url("images/gradient.png");
}
.cssgradients .header {
background-image: linear-gradient(blue, purple);
… Read more Interview Challenges
I am in the process of interviewing and wanted to document all the code challenges … Read more
JasonP and Cross Domain Access
In the jQuery ajax request, the use of a callback function wraps our data to … Read more
JavaScript this, self, bind, call, and apply
When a function is set and the this
value is not assigned, it is always … Read more
Manipulating Arrays
forEach()
Pass a callback function that manipulates each element in the referenced array. It sends … Read more
By ‘reference’ and by ‘value’
HTML5 localStorage
As an exercise, I wanted to use vanilla javascript and localStorage() to take two items … Read more