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

前端 未结 3 1913
执笔经年
执笔经年 2020-12-23 21:43

I use jQuery Autosize plugin:

http://www.jacklmoore.com/autosize/

The script itself you can see here:

http://www.jacklmoore.com/js/jquery.autosize.js

3条回答
  •  生来不讨喜
    2020-12-23 22:09

    FWIW the autosize invocation method has changed. If you end up here and are using it with jQuery

    Previously it was

    $('textarea').autosize();
    

    The new invocation is

    autosize($('textarea'));
    

提交回复
热议问题