Faster way of passing a param to call functions.
This pattern of functions as objects runs significantly faster than a switch statement doing the same thing on IE (40%)…
This pattern of functions as objects runs significantly faster than a switch statement doing the same thing on IE (40%)…
[Examples near the bottom] Okay, Sandbox solutions aren’t going to go away any time soon (No matter how much I…
Okay so there are a lot of guides on this and most are completely right. But what I want to…
Been away from the blog posts for the last 2 weeks, but I aim to keep up everything I have…
The theory always stays the same no matter how this has happened, basically we changed the access to someone else,…
Sometimes you don’t want to use the ULS because you are working locally and you want to work quickly without…
Just a note the following, Node.nodeType isn’t in IE8 or below so if you are targeting those browsers make sure…
Ever returned a massive array from json? Want to pre render the table to reduce dom manipulation and just populate…
(function hidenext(jq){ jq.eq(0).fadeOut(“fast”, function(){ (jq=jq.slice(1)).length && hidenext(jq); }); })($(‘div#bodyContent a’)) Pure awesome. [source][/source]
IIFE – Immediately Invoked Function Expression (Pronounced: “Iffy”) Okay now we know what IIFE stands for what is an IIFE…