I have a simple jQuery script in a WordPress plugin that is using a jQuery wrapper like this:
$(document).ready(function(){ // jQuery code is in here }
(function( $ ) { "use strict"; $(function() { //Your code here }); }(jQuery));