| javascript Programming Glossary: zakasWhy would one use the Publish/Subscribe pattern (in JS/jQuery)? http://stackoverflow.com/questions/13512949/why-would-one-use-the-publish-subscribe-pattern-in-js-jquery    For this approach there's an excellent talk by Nicholas Zakas . For the MV approach the best articles and books I know are.. 
 Turning two elements visible/hidden in the same div http://stackoverflow.com/questions/17725361/turning-two-elements-visible-hidden-in-the-same-div  lecture from Google font end engineer Nicholas Zakas on JavaScript optimization this opened my eyes on a few things.. 
 How does this JavaScript/JQuery Syntax work: (function( window, undefined ) { })(window)? http://stackoverflow.com/questions/2716069/how-does-this-javascript-jquery-syntax-work-function-window-undefined 
 Architecture of a single-page JavaScript web application? http://stackoverflow.com/questions/3050869/architecture-of-a-single-page-javascript-web-application  Scalable JavaScript Application Architecture by Nicholas Zakas helpful in researching client side architecture options. Two.. 
 JavaScript loop performance - Why is to decrement the iterator toward 0 faster than incrementing http://stackoverflow.com/questions/3520688/javascript-loop-performance-why-is-to-decrement-the-iterator-toward-0-faster-t  length actually the chapter was written by Nicholas C. Zakas . This change can result in savings of up to 50 off the original.. 
 Top-Rated JavaScript Blogs [closed] http://stackoverflow.com/questions/409056/top-rated-javascript-blogs  DailyJS @Ric NCZOnline @Kenny Eliasson by Nicholas C. Zakas JSPatterns by Stoyan Stefanov Badass JavaScript by Devon Govett.. 
 Is $(document).ready necessary if I put all my JavaScript at the bottom of the page? [duplicate] http://stackoverflow.com/questions/6877390/is-document-ready-necessary-if-i-put-all-my-javascript-at-the-bottom-of-the-p  file . this book High Performance JavaScript by Nickolas Zakas has a lot of interesting information about JavaScript performace.. 
 How do I create a custom Error in JavaScript? http://stackoverflow.com/questions/783818/how-do-i-create-a-custom-error-in-javascript  to Error.prototype instead of new Error like Nicholas Zakas did in his article I created a jsFiddle with the code below.. 
 HTML5 Canvas Performance and Optimization Tips, Tricks and Coding Best Practices http://stackoverflow.com/questions/8205828/html5-canvas-performance-and-optimization-tips-tricks-and-coding-best-practices  battery if you leave it open in the background. Nicholas Zakas wrote a hugely detailed and informative article about requestAnimationFrame.. 
 “Offsite” copy of the DOM to do manipulations http://stackoverflow.com/questions/9319017/offsite-copy-of-the-dom-to-do-manipulations  manipulations  I have recently watched a video of Nicholas Zakas talk about high performace scripts. This one is about reflow.. 
 |