Tutorial Namespaced Javascript Template
Self invoking anonymous function assigned to the yournamespacechoice global variable. Serves the effect of keeping all functions and variabl...
https://iskablogs.blogspot.com/2014/03/tutorial-namespaced-javascript-template.html
Self invoking anonymous function assigned to the yournamespacechoice global variable. Serves the effect of keeping all functions and variables private to this function. To expose a function or variable we must explictly return it at the bottom of the function. Remaps jQuery to $.
var yournamespacechoice = (function ($) {
var publicfunction;
function privatefunction() {
//
var yournamespacechoice = (function ($) {
var publicfunction;
function privatefunction() {
//