About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
iberck
11/16/2015 - 7:24 PM
share
Share
add_circle_outline
Save
JQuery self executing anonymous function
JQuery self executing anonymous function
jquery-self-executing-anonymous-func.md
content_copy
file_download
Rendered
Source
Self-executing anonymous function
Sirve para que el símbolo "$" no tenga conflicto con otras librerías.
Todas las funciones y variables sólo existen dentro de este scope (encapsula código).
La función se ejecuta tan pronto como es interpretada (el árbol dom no estará cargado si se ejecuta la función en el head).
(function($) { // code here })(jQuery);
clear