javascript Programming Glossary: resig's
Memory leak risk in JavaScript closures http://stackoverflow.com/questions/11186750/memory-leak-risk-in-javascript-closures heck there was no Rails and jQuery was barely a glimmer in Resig's head. At the time of the writing they were also still targeting..
Browser detection versus feature detection http://stackoverflow.com/questions/1294586/browser-detection-versus-feature-detection upon since this post by Resig a couple of years ago. Resig's comments however were specific to libraries framework code i.e...
What does “use strict” do in JavaScript, and what is the reasoning behind it? http://stackoverflow.com/questions/1335851/what-does-use-strict-do-in-javascript-and-what-is-the-reasoning-behind-it it only for a specific function still quoting from John Resig's article Non strict code... function use strict Define your library..
Which (javascript) environments support ECMAscript 5 strict mode? (aka “use strict”) http://stackoverflow.com/questions/1423889/which-javascript-environments-support-ecmascript-5-strict-mode-aka-use-stri the global object using eval and other restrictions. John Resig's Article is a good introduction. This magical sanity saving mode..
Convert string to title case with javascript http://stackoverflow.com/questions/196972/convert-string-to-title-case-with-javascript . I'm not looking for something complicated like John Resig's solution just hopefully some kind of one or two liner. javascript..
Good Example of JavaScript's Prototype-Based Inheritance http://stackoverflow.com/questions/2064731/good-example-of-javascripts-prototype-based-inheritance model. Dean Edward's Base.js Mootools's Class or John Resig's Simple Inheritance works are ways to do classical inheritance..
How to profile and and get Javascript performance [duplicate] http://stackoverflow.com/questions/2140716/how-to-profile-and-and-get-javascript-performance functions and alike making it quite unreadable John Resig's jQuery profiling plugin which will give you a clearer output..
Are there any good Javascript graphics libraries? http://stackoverflow.com/questions/221710/are-there-any-good-javascript-graphics-libraries graphics 3d share improve this question John Resig's port of the Processing library to Javascript http ejohn.org..
Why can I use a function before it's defined in Javascript? http://stackoverflow.com/questions/261599/why-can-i-use-a-function-before-its-defined-in-javascript to why it should work though. I first saw this in John Resig's presentation note but it was only mentioned. There's no explanation..
How to determine the best “framerate” (setInterval delay) to use in a JavaScript animation loop? http://stackoverflow.com/questions/2940054/how-to-determine-the-best-framerate-setinterval-delay-to-use-in-a-javascript the standard timer resolution on Windows is 15ms see John Resig's blog post . I suspect that an well written 15ms animation looks..
Javascript prototype operator performance: saves memory, but is it faster? http://stackoverflow.com/questions/3493252/javascript-prototype-operator-performance-saves-memory-but-is-it-faster classes saves also memory . Then I read in this John Resig's article Instantiating a function with a bunch of prototype properties..
Can Read-Only Properties be Implemented in Pure JavaScript? http://stackoverflow.com/questions/366047/can-read-only-properties-be-implemented-in-pure-javascript in Internet Explorer. You can read more about it from John Resig's blog or the Mozilla Developer Center . share improve this answer..
Get Element StyleSheet Style in JavaScript http://stackoverflow.com/questions/395341/get-element-stylesheet-style-in-javascript StyleSheet Style in JavaScript I've been using John Resig's getStyle function from Pro JavaScript Techniques to get the..
Javascript Best Practices http://stackoverflow.com/questions/39691/javascript-best-practices this question Seconding Javascript The Good Parts and Resig's book Secrets of the Javascript Ninja . Here are some tips for..
Using &&'s short-circuiting as an if statement? http://stackoverflow.com/questions/5049006/using-s-short-circuiting-as-an-if-statement
Is there a pure Javascript X/HTML validator? [closed] http://stackoverflow.com/questions/5809563/is-there-a-pure-javascript-x-html-validator on a web API. The closest I've found to this is John Resig's HTML parser but that seems to be more about fixing HTML and.. if not how difficult and lengthy would it be to adapt John Resig's parser javascript html validator share improve this question..
How can I get jquery to execute animations in exact parallel? http://stackoverflow.com/questions/811750/how-can-i-get-jquery-to-execute-animations-in-exact-parallel more answer hopefully my last one... Unfortunately John Resig's syncAnimate method is not quite up to snuff for the accordion..
How is almost everything in Javascript an object? http://stackoverflow.com/questions/9108925/how-is-almost-everything-in-javascript-an-object
How persistent is localStorage? http://stackoverflow.com/questions/9948284/how-persistent-is-localstorage storage share improve this question From John Resig's Blog Duration In DOM Storage it is not possible to specify an..
|