script.js:4 Uncaught TypeError: $ is not a function at script.js:4 code example
Example 1: Uncaught TypeError is not a function JavaScript
jQuery(document).ready(function($){
// jQuery code is in here
});
Example 2: VM1188:1 Uncaught TypeError: $ is not a function at :1:1
jQuery(document).ready(function($){
//you can now use $ as your jQuery object here
});