Which of these is correct - as a number of plugins I've used are showing me differences and I was wondering why?
(function ($) {
//Code
})(jQuery);
(function ($) {
//Code
}(jQuery));
;(function($) {
//Code
}(jQuery));
I am assuming the first however wondering why I've seen the 2nd and 3rd iterations?