Uncaught TypeError: $ is not a function

Try this:

(function($){
	"use strict";

	jQuery(document).ready(function(){

	});
})(jQuery);

replacing the $ with jQuery resolved this issue for me in the past.

1 Like