I'm confused by the different uses of the $ in jQuery. Take for example:
$(document).ready(function($) {
$("#nav_lat").slicknav({prependTo:"#mobile_menu"});
});
The first $ could be replaced with "jQuery" and I realize that the second $ is being passed into the anonymous function but what does it mean? And then the last $, what does that mean?