I've found this function and I'm not sure about what's doing
(function($) {
    $(document).ready(function() {
        /
        $('.auto-scroll').off('click').on('click', function(event) {
            event.preventDefault();
            ....
            ....
        });
        $("#btnBuscar").on("click", function() {
            ...
            ...
        });
    });
})(jQuery);
What is the meaning of pass JQuery as a parameter?
 
     
    