I'm not the best at jquery and I came across a var initialization that I don't know why the person who wrote the code did it this way.
In the init for a plugin, we have
this.init = function(settings) { var $this = this; this.s = { initialSlide: 0, firstSlide: true, }; ... more code, some uses $this, some uses "this"}
So what is the difference here between "$this" and "this" and why not use one or the other all the time?