Normally when I am writing my jquery code I do something like
$(document).ready(function() {
// some code
});
I was looking at some code online and I noticed that the author did this
$(document).ready(function($) {
// some code
});
What is the use of the $ as the function parameter