↧
Answer by Shubh for TypeError: $(...).parents(...).size is not a function
Please use 'length' like @charlietfl suggested. But I was unable to trace from where the error was getting displayed, hence I ended up with below.(function ($) { $.fn.extend({ size: function () {...
View ArticleAnswer by charlietfl for TypeError: $(...).parents(...).size is not a function
size() was deprecated years ago and removed in version 3 ... use length insteadif (e.target.id == "wrapper" || $(e.target).parents("#wrapper").length)All you had to do was look this up in the size()...
View ArticleTypeError: $(...).parents(...).size is not a function
I have a basic script which allows me to click on the website's background, excluding #content.After upgrading jQuery to 3.1.0 version, I get this error:TypeError: $(...).parents(...).size is not a...
View Article