quickstep25
8/16/2014 - 12:08 AM

JavaScript - IIFE TEMPLATE - when minified the code variables in scope will be minimized as well. - ref: http://toddmotto.com/what-function-

JavaScript - IIFE TEMPLATE

// IIFE Functions in JavaScript

(function ($, window, document, undefined) {
    'use strict';

    $(document).ready(function () {

      // .. javascript code here ...

    });
    
}(jQuery, window, document));


//  WHEN MINIMIZED IT BECOMES .....

!function($,n,t,u){"use strict";$(t).ready(function(){})}(jQuery,window,document);