6
I will finish a system started by another colleague who was disconnected from the company and I am in doubt about the use of +
before starting the function, and I would like to know the impact of this assignment, follows:
+function ($) {
//funções dentro do arquivo .js
//e termina dessa forma
}(jQuery);
I’m used to working two ways;
$(function ($) {...})
$(document).ready( function() {...})
I’ve seen it answered here.
– Maniero