jQuery Autosize plugin error – intermediate value(…) is not a function

the “TypeError: (intermediate value)(…) is not a function” pops up as the result of missing a semi colon on the function BEFORE the one it throws an error on. It might be as simple as: jQuery(function($){$(document).ready(function(){ $(‘textarea’).autosize(); } ); //<—– or it could be the function declared before that. An example of how this is … Read more